[gnome-clocks] Fixed spacing in NewAlarmDialog



commit 6c3fe1e961a7aa6ed26e33ea7511c3e86bd79907
Author: Seif Lotfy <seif lotfy com>
Date:   Fri Aug 17 15:04:49 2012 +0200

    Fixed spacing in NewAlarmDialog
    
    Removed unecessary padding and adjusted the spacing between
    columns and rows

 gnomeclocks/widgets.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnomeclocks/widgets.py b/gnomeclocks/widgets.py
index 23a7286..2f222de 100644
--- a/gnomeclocks/widgets.py
+++ b/gnomeclocks/widgets.py
@@ -386,12 +386,12 @@ class NewAlarmDialog(Gtk.Dialog):
         else:
             table1 = Gtk.Table(4, 5, False)
         table1.set_row_spacings(9)
-        table1.set_col_spacings(9)
+        table1.set_col_spacings(5)
+        table1.set_col_spacing(0, 9)
         content_area = self.get_content_area()
         content_area.pack_start(table1, True, True, 0)
         self.add_buttons(_("Cancel"), 0, _("Save"), 1)
         self.connect("response", self.on_response)
-        table1.set_border_width(5)
 
         t = time.localtime()
         h = t.tm_hour



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]