diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2013-07-25 08:24:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-06 13:02:27 +0100 |
commit | 4182c53e56221203ca4448aca623cbb923544f33 (patch) | |
tree | c606a4d06be2fa91e7658dda72c57a9f161d6afd /bitbake/lib/bb/ui | |
parent | 8db39d2f665dd54d5a754da1e044b07aeba5c201 (diff) | |
download | poky-4182c53e56221203ca4448aca623cbb923544f33.tar.gz |
bitbake: hob/imagedetailspage: add tooltip for save image recipe button
[YOCTO #4193]
(Bitbake rev: de3cb77ec7ceb8e0671cf3edfd3713f907d1d0bc)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py index f50552fbbd..ca33e08a77 100755 --- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py +++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py | |||
@@ -590,6 +590,7 @@ class ImageDetailsPage (HobPage): | |||
590 | name = "Save image recipe" | 590 | name = "Save image recipe" |
591 | if name in buttonlist and self.builder.recipe_model.is_custom_image(): | 591 | if name in buttonlist and self.builder.recipe_model.is_custom_image(): |
592 | save_button = HobAltButton("Save image recipe") | 592 | save_button = HobAltButton("Save image recipe") |
593 | save_button.set_tooltip_text("Keep your changes saving them as an image recipe") | ||
593 | save_button.set_sensitive(not self.image_saved) | 594 | save_button.set_sensitive(not self.image_saved) |
594 | button_id = save_button.connect("clicked", self.save_button_clicked_cb) | 595 | button_id = save_button.connect("clicked", self.save_button_clicked_cb) |
595 | self.button_ids[button_id] = save_button | 596 | self.button_ids[button_id] = save_button |