From 2ecb102968cdbbdbbfa91e1dcccf45bcd0b59a89 Mon Sep 17 00:00:00 2001 From: Andrei Dinu Date: Fri, 22 Mar 2013 17:20:10 +0200 Subject: Adjust spacing on information windows [Hob #4070] - tweaked the spacing on info windows - fixed text bolding in simple settings dialog Signed-off-by: Andrei Dinu Signed-off-by: Richard Purdie --- lib/bb/ui/crumbs/hig/propertydialog.py | 14 +++++++------- lib/bb/ui/crumbs/hig/simplesettingsdialog.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/bb/ui/crumbs/hig/propertydialog.py b/lib/bb/ui/crumbs/hig/propertydialog.py index d68ef3a16..4420f9766 100644 --- a/lib/bb/ui/crumbs/hig/propertydialog.py +++ b/lib/bb/ui/crumbs/hig/propertydialog.py @@ -56,7 +56,7 @@ class PropertyDialog(CrumbsDialog): HOB_ICON_BASE_DIR = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), ("icons/")) ICON_PACKAGES_DISPLAY_FILE = os.path.join(HOB_ICON_BASE_DIR, ('info/info_display.png')) - self.table = gtk.Table(2,2,False) + self.table = gtk.Table(1,1,False) self.table.set_row_spacings(0) self.table.set_col_spacings(0) @@ -68,21 +68,21 @@ class PropertyDialog(CrumbsDialog): image_info = self.properties.split("*")[0] info = self.properties.split("*")[1] - vbox = gtk.VBox(True, spacing=0) + vbox = gtk.VBox(True, spacing=30) self.label_short = gtk.Label() self.label_short.set_line_wrap(False) - self.label_short.set_markup(" " + image_info) + self.label_short.set_markup(image_info) self.label_short.set_property("xalign", 0) self.info_label = gtk.Label() self.info_label.set_line_wrap(True) self.info_label.set_markup(info) - self.info_label.set_property("xalign", 1) + self.info_label.set_property("yalign", 0.5) - self.table.attach(self.image, 0,1,0,1, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL) - self.table.attach(self.label_short, 0,1,0,1, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL) - self.table.attach(self.info_label, 0,1,1,2, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL) + self.table.attach(self.image, 0,1,0,1, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL,xpadding=5,ypadding=5) + self.table.attach(self.label_short, 0,1,0,1, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL,xpadding=40,ypadding=5) + self.table.attach(self.info_label, 0,1,1,2, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL,xpadding=40,ypadding=10) self.vbox.add(self.table) diff --git a/lib/bb/ui/crumbs/hig/simplesettingsdialog.py b/lib/bb/ui/crumbs/hig/simplesettingsdialog.py index e0fbdca8f..8ac82ed7d 100644 --- a/lib/bb/ui/crumbs/hig/simplesettingsdialog.py +++ b/lib/bb/ui/crumbs/hig/simplesettingsdialog.py @@ -305,7 +305,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): tooltip += "For more information on shared state mirrors, check the Yocto Project Reference Manual." - table = self.gen_label_info_widget(content,"Shared state mirrors" + "*" + tooltip) + table = self.gen_label_info_widget(content,"Shared state mirrors" + "*" + tooltip) advanced_vbox.pack_start(table, expand=False, fill=False, padding=6) sub_vbox = gtk.VBox(False) -- cgit 1.2.3-korg