2043: Error on cosole output when Esc press in configure window of custom text in the book report

svn: r14627
This commit is contained in:
Benny Malengier
2010-03-05 15:24:47 +00:00
parent 571c6305ea
commit 01f264fa8b
2 changed files with 23 additions and 8 deletions

View File

@@ -639,7 +639,10 @@ def report(dbstate, uistate, person, report_class, options_class,
except:
LOG.error("Failed to run report.", exc_info=True)
break
elif (response == gtk.RESPONSE_DELETE_EVENT or
response == gtk.RESPONSE_CANCEL):
elif response == gtk.RESPONSE_CANCEL:
dialog.close()
break
elif response == gtk.RESPONSE_DELETE_EVENT:
#just stop, in ManagedWindow, delete-event is already coupled to
#correct action.
break