openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #04119
[Merge] lp:~googol-hush/openlp/songs into lp:openlp
Andreas Preikschat has proposed merging lp:~googol-hush/openlp/songs into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Hello!
- make sure that the 'edit' and 'delete' buttons are disabled after editing all verses (because no verse is selected)
--
https://code.launchpad.net/~googol-hush/openlp/songs/+merge/38074
Your team OpenLP Core is requested to review the proposed merge of lp:~googol-hush/openlp/songs into lp:openlp.
=== modified file 'openlp/plugins/songs/forms/editsongform.py'
--- openlp/plugins/songs/forms/editsongform.py 2010-09-27 18:34:40 +0000
+++ openlp/plugins/songs/forms/editsongform.py 2010-10-10 12:18:44 +0000
@@ -483,6 +483,8 @@
self.VerseListWidget.resizeRowsToContents()
self.VerseListWidget.repaint()
self.tagRows()
+ self.VerseEditButton.setEnabled(False)
+ self.VerseDeleteButton.setEnabled(False)
def onVerseDeleteButtonClicked(self):
self.VerseListWidget.removeRow(self.VerseListWidget.currentRow())
Follow ups