From 7b9c1a024d1fe99081fd8adf2889231f8ea95fb3 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 18 May 2010 22:16:47 +0100 Subject: [PATCH] fix spacing of the status window --- SparkleShare/SparkleWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index 27db2042..34f1ae16 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -58,10 +58,11 @@ namespace SparkleShare { VBox LayoutVertical = new VBox (false, 0); LayoutHorizontal = new HBox (true, 6); + LayoutHorizontal.BorderWidth = 6; LayoutHorizontal.PackStart (CreatePeopleList ()); LayoutHorizontal.PackStart (CreateEventLog ()); - LayoutVertical.PackStart (LayoutHorizontal, true, true, 6); + LayoutVertical.PackStart (LayoutHorizontal, true, true, 0); HButtonBox DialogButtons = new HButtonBox (); DialogButtons.Layout = ButtonBoxStyle.Edge;