aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-01-10 14:37:03 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-12 11:43:50 +0000
commitc9bb30b232396bbdd3c97c1059e972d6a4abf637 (patch)
treef5ee3d98abe048a26a7829dff576a15699ace5b3 /bitbake
parent749ca687091d6ee7f92fce4c385a7ff4bd2636aa (diff)
downloadopenembedded-core-contrib-c9bb30b232396bbdd3c97c1059e972d6a4abf637.tar.gz
bitbake/goggle: closing the progress dialog kills the UI
It's unlikely that someone wants to close the progress dialog yet leave the UI (and BitBake process) running, so hook up the progress dialogs delete-event to exit gtk. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/goggle.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/goggle.py b/bitbake/lib/bb/ui/goggle.py
index 3c6a014dc2..1905c0c201 100644
--- a/bitbake/lib/bb/ui/goggle.py
+++ b/bitbake/lib/bb/ui/goggle.py
@@ -70,6 +70,7 @@ def main (server, eventHandler):
window = MainWindow ()
window.show_all ()
pbar = ProgressBar(window)
+ pbar.connect("delete-event", gtk.main_quit)
# Create the object for the current build
running_build = RunningBuild ()