forked from openlp/openlp
enable checking the item when double clicking
This commit is contained in:
parent
7c0ada4fe1
commit
40aacf69fd
@ -87,7 +87,7 @@ class SongExportForm(OpenLPWizard):
|
|||||||
Song wizard specific signals.
|
Song wizard specific signals.
|
||||||
"""
|
"""
|
||||||
QtCore.QObject.connect(self.availableListWidget,
|
QtCore.QObject.connect(self.availableListWidget,
|
||||||
QtCore.SIGNAL(u'itemPressed(QListWidgetItem*)'), self.onItemPressed)
|
QtCore.SIGNAL(u'itemActivated(QListWidgetItem*)'), self.onItemPressed)
|
||||||
QtCore.QObject.connect(self.searchLineEdit,
|
QtCore.QObject.connect(self.searchLineEdit,
|
||||||
QtCore.SIGNAL(u'textEdited(const QString&)'),
|
QtCore.SIGNAL(u'textEdited(const QString&)'),
|
||||||
self.onSearchLineEditChanged)
|
self.onSearchLineEditChanged)
|
||||||
@ -324,7 +324,6 @@ class SongExportForm(OpenLPWizard):
|
|||||||
``item``
|
``item``
|
||||||
The *QListWidgetItem* which was pressed.
|
The *QListWidgetItem* which was pressed.
|
||||||
"""
|
"""
|
||||||
return
|
|
||||||
item.setCheckState(
|
item.setCheckState(
|
||||||
QtCore.Qt.Unchecked if item.checkState() else QtCore.Qt.Checked)
|
QtCore.Qt.Unchecked if item.checkState() else QtCore.Qt.Checked)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user