summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/builddetailspage.py
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2012-08-21 18:21:23 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-22 13:59:55 +0100
commit164083d31f7b8d1ea96b31ed3c13bddcc42961f6 (patch)
treec953d6dba3126da2f4f7047aedf24e2dcbf30284 /bitbake/lib/bb/ui/crumbs/builddetailspage.py
parent2a6818eea1d73a66204e4a903300c9794f277efe (diff)
downloadpoky-164083d31f7b8d1ea96b31ed3c13bddcc42961f6.tar.gz
bitbake: Hob wizard-like reorganization
Hob is now more context-sensitive regarding user changes/options. Also, the workflow have been streamlined and resembles more of a wizard. Beautified some hardcoded values. Fixed typo. New streamlined Image Configuration page. Build and/or Edit image buttons presence is context sensitive. Recipes and packages tabs selected automatically based on custom image or pre-defined target image (included or all). Context sensitive Back button. Fixes [YOCTO 2165] (Bitbake rev: b48cd7dcf57b1abc8c5b46ced11d4f57bf06e557) Signed-off-by: Cristian Iorga <cristian.iorga@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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builddetailspage.py b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
index 30eab29508..4d2d947d21 100755
--- a/bitbake/lib/bb/ui/crumbs/builddetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/builddetailspage.py
@@ -165,7 +165,7 @@ class BuildDetailsPage (HobPage):
165 self.builder.handler.build.model.connect_after("row-changed", self.scroll_to_present_row, self.scrolled_view_build.get_vadjustment(), self.build_tv) 165 self.builder.handler.build.model.connect_after("row-changed", self.scroll_to_present_row, self.scrolled_view_build.get_vadjustment(), self.build_tv)
166 166
167 self.button_box = gtk.HBox(False, 6) 167 self.button_box = gtk.HBox(False, 6)
168 self.back_button = HobAltButton("<< Back to image configuration") 168 self.back_button = HobAltButton('<< Back')
169 self.back_button.connect("clicked", self.back_button_clicked_cb) 169 self.back_button.connect("clicked", self.back_button_clicked_cb)
170 self.button_box.pack_start(self.back_button, expand=False, fill=False) 170 self.button_box.pack_start(self.back_button, expand=False, fill=False)
171 171