summaryrefslogtreecommitdiffstats
path: root/frontend
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2008-04-22 19:00:12 +0200
committerMartin Sivak <msivak@redhat.com>2008-04-22 19:00:12 +0200
commit43cb2727dcc19f102d54418cbba1887cb916b5e4 (patch)
treeff265865fd7386533b5b4279a4425d2c4a6f033f /frontend
parent055575bcc6bc33c29456f663dd8d75993d30427c (diff)
downloadfirstaidkit-43cb2727dcc19f102d54418cbba1887cb916b5e4.tar.gz
firstaidkit-43cb2727dcc19f102d54418cbba1887cb916b5e4.tar.xz
firstaidkit-43cb2727dcc19f102d54418cbba1887cb916b5e4.zip
Circular buffer works correctly and the baskup system doesn't stay initialized because of reporting queue anymore
Diffstat (limited to 'frontend')
-rw-r--r--frontend/main.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/main.py b/frontend/main.py
index 2322f1d..899e331 100644
--- a/frontend/main.py
+++ b/frontend/main.py
@@ -81,12 +81,13 @@ class CallbacksMainWindow(object):
if True: #XXX destroy right now, but warn, in final code we have to wait until plugin finishes
print "!!! You should wait until the running plugin finishes!!"
self._dialog.destroy()
- del self._tasker
- del self._cfg
return True
def on_destroy(self, widget, *args):
print "on_destroy"
+ self._tasker.end()
+ del self._tasker
+ del self._cfg
gtk.main_quit()
def on_mainmenu_about_activate(self, widget, *args):