openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #05966
[Merge] lp:~meths/openlp/testing into lp:openlp
Jon Tibble has proposed merging lp:~meths/openlp/testing into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~meths/openlp/testing/+merge/48333
Fix custom edit (Bug #711934)
--
https://code.launchpad.net/~meths/openlp/testing/+merge/48333
Your team OpenLP Core is requested to review the proposed merge of lp:~meths/openlp/testing into lp:openlp.
=== modified file 'openlp/plugins/custom/forms/editcustomform.py'
--- openlp/plugins/custom/forms/editcustomform.py 2011-02-01 00:33:50 +0000
+++ openlp/plugins/custom/forms/editcustomform.py 2011-02-02 16:17:39 +0000
@@ -138,13 +138,13 @@
def reject(self):
Receiver.send_message(u'custom_edit_clear')
- self.close()
+ QtGui.QDialog.reject(self)
def accept(self):
log.debug(u'accept')
if self.saveCustom():
Receiver.send_message(u'custom_load_list')
- self.close()
+ QtGui.QDialog.accept(self)
def saveCustom(self):
"""
Follow ups