summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/builddetailspage.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-03-15 14:56:45 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-15 10:35:18 +0000
commit602adb0e5828144d44d93cf05a800db10a47c3ab (patch)
treed0c8c833959ad1163eed9bd9a3d4121b713f60c8 /bitbake/lib/bb/ui/crumbs/builddetailspage.py
parent7548697a6b5e2a0268f149c296b74a750ad917d6 (diff)
downloadpoky-602adb0e5828144d44d93cf05a800db10a47c3ab.tar.gz
Hob: Change Box's padding value
For Box type of widget, change the padding value to be HIG consistent, that is an increments of 6 pixels. (Bitbake rev: 0347e99ca5c232832f2b490584d76872c6d77311) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/builddetailspage.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/builddetailspage.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builddetailspage.py b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
index 941f1e30b3..8b75ca08bf 100755
--- a/bitbake/lib/bb/ui/crumbs/builddetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
@@ -40,9 +40,9 @@ class BuildDetailsPage (HobPage):
40 40
41 def create_visual_elements(self): 41 def create_visual_elements(self):
42 # create visual elements 42 # create visual elements
43 self.vbox = gtk.VBox(False, 15) 43 self.vbox = gtk.VBox(False, 12)
44 44
45 self.progress_box = gtk.HBox(False, 5) 45 self.progress_box = gtk.HBox(False, 6)
46 self.progress_bar = HobProgressBar() 46 self.progress_bar = HobProgressBar()
47 self.progress_box.pack_start(self.progress_bar, expand=True, fill=True) 47 self.progress_box.pack_start(self.progress_bar, expand=True, fill=True)
48 self.stop_button = gtk.LinkButton("Stop the build process", "Stop") 48 self.stop_button = gtk.LinkButton("Stop the build process", "Stop")
@@ -55,7 +55,7 @@ class BuildDetailsPage (HobPage):
55 self.scrolled_view.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) 55 self.scrolled_view.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
56 self.scrolled_view.add(self.build_tv) 56 self.scrolled_view.add(self.build_tv)
57 57
58 self.button_box = gtk.HBox(False, 5) 58 self.button_box = gtk.HBox(False, 6)
59 self.back_button = gtk.LinkButton("Go back to Image Configuration screen", "<< Back to image configuration") 59 self.back_button = gtk.LinkButton("Go back to Image Configuration screen", "<< Back to image configuration")
60 self.back_button.connect("clicked", self.back_button_clicked_cb) 60 self.back_button.connect("clicked", self.back_button_clicked_cb)
61 self.button_box.pack_start(self.back_button, expand=False, fill=False) 61 self.button_box.pack_start(self.back_button, expand=False, fill=False)