windows about: Fix window and graphic size

This commit is contained in:
Hylke Bons 2014-05-08 21:20:55 -07:00
parent 315252b29d
commit 71786e9a33

View file

@ -39,7 +39,7 @@ namespace SparkleShare {
Title = "About SparkleShare"; Title = "About SparkleShare";
ResizeMode = ResizeMode.NoResize; ResizeMode = ResizeMode.NoResize;
Height = 288; Height = 288;
Width = 640; Width = 720;
Icon = SparkleUIHelpers.GetImageSource("sparkleshare-app", "ico"); Icon = SparkleUIHelpers.GetImageSource("sparkleshare-app", "ico");
WindowStartupLocation = WindowStartupLocation.CenterScreen; WindowStartupLocation = WindowStartupLocation.CenterScreen;
@ -73,7 +73,7 @@ namespace SparkleShare {
private void CreateAbout () private void CreateAbout ()
{ {
Image image = new Image () { Image image = new Image () {
Width = 640, Width = 720,
Height = 260 Height = 260
}; };