From patchwork Wed Sep 26 08:08:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] hob/builder: When you stop a build, Hob should tell you stopping is happening Date: Wed, 26 Sep 2012 08:08:15 -0000 From: Constantin Musca X-Patchwork-Id: 37243 Message-Id: <1348646895-20634-1-git-send-email-constantinx.musca@intel.com> To: bitbake-devel@lists.openembedded.org Cc: Constantin Musca - use the progress bar text to indicate the stopping status - the text should say: 'Stopping the build...' [YOCTO #3152] Signed-off-by: Constantin Musca --- bitbake/lib/bb/ui/crumbs/builder.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 267fde1..4dbffd6 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py @@ -1375,6 +1375,8 @@ class Builder(gtk.Window): if response != gtk.RESPONSE_CANCEL: self.stopping = True if response == gtk.RESPONSE_OK: + self.build_details_page.progress_bar.set_title("Stopping the build...") + self.build_details_page.progress_bar.set_rcstyle("stop") self.cancel_build_sync() elif response == gtk.RESPONSE_YES: self.cancel_build_sync(True)