diff options
author | 2012-04-17 16:21:39 +0800 | |
---|---|---|
committer | 2012-04-17 11:41:31 +0100 | |
commit | 139a91d742ff00ec2be2bfbd9759101a250ebd23 (patch) | |
tree | 8c13533cdad0462396c8edfb2e5f7985e6398d02 | |
parent | c50d8b753d33318efba6b5a859efc220fb3d879a (diff) | |
download | poky-139a91d742ff00ec2be2bfbd9759101a250ebd23.tar.gz poky-139a91d742ff00ec2be2bfbd9759101a250ebd23.tar.bz2 poky-139a91d742ff00ec2be2bfbd9759101a250ebd23.zip |
Hob: Set the "stop" button insensitive before hide it
If user stops a build, we need to firstly set the button insensitive and
then hide it. This ensures the button's init status is "insensitive" in
next build.
(Bitbake rev: ea37272ccc28d6e24b48286e5c4c3edbad1d57cd)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/builddetailspage.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builddetailspage.py b/bitbake/lib/bb/ui/crumbs/builddetailspage.py index 6d8b509e86..51e6a4a6d2 100755 --- a/bitbake/lib/bb/ui/crumbs/builddetailspage.py +++ b/bitbake/lib/bb/ui/crumbs/builddetailspage.py @@ -238,6 +238,7 @@ class BuildDetailsPage (HobPage): self.builder.stop_build() def hide_stop_button(self): + self.stop_button.set_sensitive(False) self.stop_button.hide() def scroll_to_present_row(self, model, path, iter, v_adj, treeview): |