summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2012-09-24 15:17:58 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-25 13:38:40 +0100
commitf5a21da2faf7ede56cf211b96dffd8aaa4b485b8 (patch)
tree217eaf64c14dd622f701d4f0c71e5af509f774e1 /lib
parentc6a367bc3224adafca698a4ffc5414ad83842c16 (diff)
downloadbitbake-f5a21da2faf7ede56cf211b96dffd8aaa4b485b8.tar.gz
hob/builddetailspage: change tooltips and remove a dialog from "Build stopped" message
When you stop a build, a "Build stopped" message appears. I have changed 2 tooltips and also eliminate the alert that comes up when you click 'Edit packages'. [YOCTO #3160] Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rwxr-xr-xlib/bb/ui/crumbs/builddetailspage.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/bb/ui/crumbs/builddetailspage.py b/lib/bb/ui/crumbs/builddetailspage.py
index a927c21c1..824dfedc5 100755
--- a/lib/bb/ui/crumbs/builddetailspage.py
+++ b/lib/bb/ui/crumbs/builddetailspage.py
@@ -289,7 +289,12 @@ class BuildDetailsPage (HobPage):
action_button = HobButton("Edit %s" % action)
action_button.set_size_request(-1, 40)
- action_button.set_tooltip_text("Edit the %s parameters" % action)
+ if action == "image":
+ action_button.set_tooltip_text("Edit the image parameters")
+ elif action == "recipes":
+ action_button.set_tooltip_text("Edit the included recipes")
+ elif action == "packages":
+ action_button.set_tooltip_text("Edit the included packages")
action_button.connect('clicked', self.stop_primary_action_button_clicked_cb, action)
build_stop_tab.attach(action_button, 4, 13, 6, 9)
@@ -392,7 +397,7 @@ class BuildDetailsPage (HobPage):
if "recipes" in action:
self.builder.show_recipes()
elif "packages" in action:
- self.builder.show_packages()
+ self.builder.show_packages(ask=False)
elif "image" in action:
self.builder.show_configuration()