From df024b409b71640cacd98c1090784c75d7a25fb2 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 18 May 2010 11:15:42 +0100 Subject: [PATCH] fix space in preferences dialog --- SparkleShare/SparklePreferencesDialog.cs | 2 +- SparkleShare/SparkleWindow.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparklePreferencesDialog.cs b/SparkleShare/SparklePreferencesDialog.cs index 7e576825..5bddb128 100644 --- a/SparkleShare/SparklePreferencesDialog.cs +++ b/SparkleShare/SparklePreferencesDialog.cs @@ -39,7 +39,7 @@ namespace SparkleShare { VBox LayoutVertical = new VBox (false, 0); Label InfoLabel = new Label (); - InfoLabel.Text = "The folder" + + InfoLabel.Text = "The folder " + "" + SparkleRepo.LocalPath + "" + "\nis linked to " + "" + SparkleRepo.RemoteOriginUrl + ""; diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index b07acdcb..32f15655 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -64,7 +64,7 @@ namespace SparkleShare { PreferencesButton.Clicked += delegate (object o, EventArgs args) { SparklePreferencesDialog SparklePreferencesDialog = new SparklePreferencesDialog (this, SparkleRepo); - SparklePreferencesDialog.ShowAll (); + SparklePreferencesDialog.ShowAll (); }; DialogButtons.Add (PreferencesButton);