From: Joshua Lock Date: Mon, 10 Jan 2011 14:37:03 +0000 (+0000) Subject: bitbake/goggle: closing the progress dialog kills the UI X-Git-Tag: 2011-1~2905 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c9bb30b232396bbdd3c97c1059e972d6a4abf637;p=openembedded-core.git 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 --- 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 ()