← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~smpettit/openlp/custom into lp:openlp

 

Stevan Pettit has proposed merging lp:~smpettit/openlp/custom into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)

For more details, see:
https://code.launchpad.net/~smpettit/openlp/custom/+merge/61502

Modified editcustomform.py to add the ability to double-click a slide entry in custom to edit the slide.  This is similar to functionality found in songs edit.
-- 
https://code.launchpad.net/~smpettit/openlp/custom/+merge/61502
Your team OpenLP Core is requested to review the proposed merge of lp:~smpettit/openlp/custom into lp:openlp.
=== modified file 'openlp/plugins/custom/forms/editcustomform.py'
--- openlp/plugins/custom/forms/editcustomform.py	2011-04-16 11:42:35 +0000
+++ openlp/plugins/custom/forms/editcustomform.py	2011-05-19 03:37:24 +0000
@@ -65,6 +65,9 @@
             QtCore.SIGNAL(u'theme_update_list'), self.loadThemes)
         QtCore.QObject.connect(self.slideListView,
             QtCore.SIGNAL(u'currentRowChanged(int)'), self.onCurrentRowChanged)
+        QtCore.QObject.connect(self.slideListView,
+            QtCore.SIGNAL(u'doubleClicked(QModelIndex)'),
+            self.onEditButtonPressed)
 
     def loadThemes(self, themelist):
         self.themeComboBox.clear()


Follow ups