fix space in preferences dialog

This commit is contained in:
Hylke Bons 2010-05-18 11:15:42 +01:00
parent 4456abe84e
commit df024b409b
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ namespace SparkleShare {
VBox LayoutVertical = new VBox (false, 0); VBox LayoutVertical = new VBox (false, 0);
Label InfoLabel = new Label (); Label InfoLabel = new Label ();
InfoLabel.Text = "The folder" + InfoLabel.Text = "The folder " +
"<b>" + SparkleRepo.LocalPath + "</b>" + "<b>" + SparkleRepo.LocalPath + "</b>" +
"\nis linked to " + "\nis linked to " +
"<b>" + SparkleRepo.RemoteOriginUrl + "</b>"; "<b>" + SparkleRepo.RemoteOriginUrl + "</b>";

View file

@ -64,7 +64,7 @@ namespace SparkleShare {
PreferencesButton.Clicked += delegate (object o, EventArgs args) { PreferencesButton.Clicked += delegate (object o, EventArgs args) {
SparklePreferencesDialog SparklePreferencesDialog = SparklePreferencesDialog SparklePreferencesDialog =
new SparklePreferencesDialog (this, SparkleRepo); new SparklePreferencesDialog (this, SparkleRepo);
SparklePreferencesDialog.ShowAll (); SparklePreferencesDialog.ShowAll ();
}; };
DialogButtons.Add (PreferencesButton); DialogButtons.Add (PreferencesButton);