diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-03-08 21:39:38 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-14 20:48:14 +0000 |
commit | ff3e326269d27662c830b04e05b571d257b89346 (patch) | |
tree | c33ed64c6f2154d4412bd65c3416967446843e6e /bitbake | |
parent | 3c113f355bce012d55dac873189a410657016a62 (diff) | |
download | poky-ff3e326269d27662c830b04e05b571d257b89346.tar.gz |
bitbake/hob: fix cancel button
An accidental logic inversion (aka thinko) had the cancel button only
cancel a build when the user didn't confirm the cancellation (i.e. clicked
no)...
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/hob.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py index 52788813c5..0f8fe8c2d6 100644 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/lib/bb/ui/hob.py | |||
@@ -420,7 +420,7 @@ class MainWindow (gtk.Window): | |||
420 | label.show() | 420 | label.show() |
421 | response = dialog.run() | 421 | response = dialog.run() |
422 | dialog.destroy() | 422 | dialog.destroy() |
423 | if not response == gtk.RESPONSE_YES: | 423 | if response == gtk.RESPONSE_YES: |
424 | self.handler.cancel_build() | 424 | self.handler.cancel_build() |
425 | return | 425 | return |
426 | 426 | ||