From f17af8c3f1c86867b73c11dd27c32494c9234055 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 15 May 2010 22:26:34 +0100 Subject: [PATCH] don't change the notification icon --- SparkleShare/SparkleWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index da24d938..4fd0d5be 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -286,7 +286,7 @@ namespace SparkleShare { VBox VBox = new VBox (false, 0); Table Table = new Table(7, 2, false); - Table.RowSpacing = 6; + Table.Attach (RemoteUrlBox, 0, 2, 0, 1); Table.Attach (LocalPathBox, 0, 2, 1, 2); @@ -372,7 +372,7 @@ namespace SparkleShare { TreeView LogView = new TreeView (LogStore); LogView.HeadersVisible = false; - LogView.RowSpacing = 30; + CellRendererText TextCellRight = new Gtk.CellRendererText (); TextCellRight.Alignment = Pango.Alignment.Right;