From c57bddd5dbef742345f0db19309422853da95d98 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 18 Mar 2011 16:17:04 +0000 Subject: [PATCH] [osx][window] don't stretch the side splash image --- SparkleShare/Mac/SparkleWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/Mac/SparkleWindow.cs b/SparkleShare/Mac/SparkleWindow.cs index 47da4a5a..0da13c6c 100644 --- a/SparkleShare/Mac/SparkleWindow.cs +++ b/SparkleShare/Mac/SparkleWindow.cs @@ -58,12 +58,12 @@ namespace SparkleShare { "Pixmaps", "side-splash.png"); SideSplash = new NSImage (side_splash_path) { - Size = new SizeF (150, 480) + Size = new SizeF (150, 407) }; SideSplashView = new NSImageView () { Image = SideSplash, - Frame = new RectangleF (0, 0, 150, 480) + Frame = new RectangleF (0, 0, 150, 407) };