mac about: Fix background image stretch

This commit is contained in:
Hylke Bons 2013-12-02 16:51:14 +00:00
parent 032b8db8c2
commit f122c09b08

View file

@ -81,11 +81,11 @@ namespace SparkleShare {
private void CreateAbout ()
{
this.about_image = NSImage.ImageNamed ("about");
this.about_image.Size = new SizeF (640, 260);
this.about_image.Size = new SizeF (720, 260);
this.about_image_view = new NSImageView () {
Image = this.about_image,
Frame = new RectangleF (0, 0, 640, 260)
Frame = new RectangleF (0, 0, 720, 260)
};
this.version_text_field = new SparkleLabel ("version " + Controller.RunningVersion, NSTextAlignment.Left) {