From: Andrei Dinu Date: Fri, 22 Mar 2013 15:20:10 +0000 (+0200) Subject: bitbake: Adjust spacing on information windows X-Git-Tag: rev_ivi_2015_02_04~13203 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b33a963adc3af4fa95fdb902f7ccaa865474899e;p=scm%2Fbb%2Ftizen-distro.git bitbake: Adjust spacing on information windows [Hob #4070] - tweaked the spacing on info windows - fixed text bolding in simple settings dialog (Bitbake rev: 2ecb102968cdbbdbbfa91e1dcccf45bcd0b59a89) Signed-off-by: Andrei Dinu Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py b/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py index d68ef3a..4420f97 100644 --- a/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py +++ b/bitbake/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/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py b/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py index e0fbdca..8ac82ed 100644 --- a/bitbake/lib/bb/ui/crumbs/hig/simplesettingsdialog.py +++ b/bitbake/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)