From e78f66c923c506e473cd35ad7e3b4d0d4a859543 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 26 Feb 2012 16:05:00 +0000 Subject: [PATCH] setup: padding tweaks --- SparkleShare/Mac/SparkleSetup.cs | 2 +- SparkleShare/SparkleSetup.cs | 2 +- SparkleShare/SparkleSetupWindow.cs | 15 ++++++++------- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/SparkleShare/Mac/SparkleSetup.cs b/SparkleShare/Mac/SparkleSetup.cs index a90856c7..675a37b8 100755 --- a/SparkleShare/Mac/SparkleSetup.cs +++ b/SparkleShare/Mac/SparkleSetup.cs @@ -86,7 +86,7 @@ namespace SparkleShare { Header = "Welcome to SparkleShare!"; Description = "Before we get started, what's your name and email? " + - "Don't worry, this information is only visible to your team members."; + "Don't worry, this information will only visible to your team members."; FullNameLabel = new NSTextField () { diff --git a/SparkleShare/SparkleSetup.cs b/SparkleShare/SparkleSetup.cs index 59907757..a463e52e 100755 --- a/SparkleShare/SparkleSetup.cs +++ b/SparkleShare/SparkleSetup.cs @@ -65,7 +65,7 @@ namespace SparkleShare { Header = _("Welcome to SparkleShare!"); Description = "Before we get started, what's your name and email? " + - "Don't worry, this information is only visible to your team members."; + "Don't worry, this information will only visible to your team members."; Table table = new Table (2, 3, true) { diff --git a/SparkleShare/SparkleSetupWindow.cs b/SparkleShare/SparkleSetupWindow.cs index 1f4f347b..a8eb506a 100755 --- a/SparkleShare/SparkleSetupWindow.cs +++ b/SparkleShare/SparkleSetupWindow.cs @@ -139,17 +139,18 @@ namespace SparkleShare { Xalign = 0, }; - Label description = new Label (Description) { - Xalign = 0, - Wrap = true - }; - VBox layout_vertical = new VBox (false, 0); - layout_vertical.PackStart (new Label (""), false, false, 6); + layout_vertical.PackStart (new Label (""), false, false, 0); layout_vertical.PackStart (header, false, false, 0); - if (!string.IsNullOrEmpty (Description)) + if (!string.IsNullOrEmpty (Description)) { + Label description = new Label (Description) { + Xalign = 0, + Wrap = true + }; + layout_vertical.PackStart (description, false, false, 21); + } if (widget != null) layout_vertical.PackStart (widget, true, true, 0);