[gedit] quickopen: set spacing and borders more according with HIG



commit d04602dfac2e422b3a67e3279e65337d86079c97
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Fri Sep 2 15:45:21 2011 +0200

    quickopen: set spacing and borders more according with HIG

 plugins/quickopen/quickopen/popup.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/plugins/quickopen/quickopen/popup.py b/plugins/quickopen/quickopen/popup.py
index bbe16ee..6c828c4 100644
--- a/plugins/quickopen/quickopen/popup.py
+++ b/plugins/quickopen/quickopen/popup.py
@@ -61,8 +61,12 @@ class Popup(Gtk.Dialog):
         self.connect('show', self.on_show)
 
     def _build_ui(self):
+        self.set_border_width(5)
         vbox = self.get_content_area()
-        vbox.set_spacing(3)
+        vbox.set_spacing(2)
+        action_area = self.get_action_area()
+        action_area.set_border_width(5)
+        action_area.set_spacing(6)
 
         self._entry = Gtk.Entry()
         self.set_entry_icon(self._entry)



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