diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-10-13 14:52:31 +0200 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-10-13 14:52:31 +0200 |
commit | 24efd6d2e6ac390c696c78bdfd0c5ee3d67c611b (patch) | |
tree | 211b64432d93724cb37a55800064ad2188e39fbd /src/Gui/CCReporterDialog.py | |
parent | de2413718bdc0c236cff1ee84afe5bd6f0b247df (diff) | |
download | abrt-24efd6d2e6ac390c696c78bdfd0c5ee3d67c611b.tar.gz abrt-24efd6d2e6ac390c696c78bdfd0c5ee3d67c611b.tar.xz abrt-24efd6d2e6ac390c696c78bdfd0c5ee3d67c611b.zip |
small fix in gui
Diffstat (limited to 'src/Gui/CCReporterDialog.py')
-rw-r--r-- | src/Gui/CCReporterDialog.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py index 15604644..eb311f73 100644 --- a/src/Gui/CCReporterDialog.py +++ b/src/Gui/CCReporterDialog.py @@ -80,9 +80,8 @@ class ReporterDialog(): # thu button has been pressed (probably) if response_id == gtk.RESPONSE_APPLY: if not self.check_settings(daemon): - print "smth is wrong" dialog.stop_emission("response") - self.wTree.get_widget("bApply").stop_emission("clicked") + self.wTree.get_widget("bSend").stop_emission("clicked") def on_send_toggled(self, cell, path, model): model[path][3] = not model[path][3] @@ -151,10 +150,10 @@ class ReporterDialog(): response = dialog.run() dialog.destroy() if response == gtk.RESPONSE_NO: - print "user cancelled reporting" + # user cancelled reporting return False if response == gtk.RESPONSE_YES: - print "user wants to proceed with report" + # "user wants to proceed with report" return True return True |