forked from openlp/openlp
Preserve greyed out of next button in import wizard
This commit is contained in:
parent
cd75b33a4d
commit
59280d10b7
@ -190,6 +190,14 @@ class OpenLPWizard(QtGui.QWizard):
|
|||||||
self.preWizard()
|
self.preWizard()
|
||||||
self.performWizard()
|
self.performWizard()
|
||||||
self.postWizard()
|
self.postWizard()
|
||||||
|
else:
|
||||||
|
self.customPageChanged(pageId)
|
||||||
|
|
||||||
|
def customPageChanged(self, pageId):
|
||||||
|
"""
|
||||||
|
Called when changing to a page other than the progress page
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
def onErrorCopyToButtonClicked(self):
|
def onErrorCopyToButtonClicked(self):
|
||||||
"""
|
"""
|
||||||
|
@ -343,6 +343,13 @@ class SongImportForm(OpenLPWizard):
|
|||||||
self.formatSpacer.changeSize(width, 0, QtGui.QSizePolicy.Fixed,
|
self.formatSpacer.changeSize(width, 0, QtGui.QSizePolicy.Fixed,
|
||||||
QtGui.QSizePolicy.Fixed)
|
QtGui.QSizePolicy.Fixed)
|
||||||
|
|
||||||
|
def customPageChanged(self, pageId):
|
||||||
|
"""
|
||||||
|
Called when changing to a page other than the progress page
|
||||||
|
"""
|
||||||
|
if self.page(pageId) == self.sourcePage:
|
||||||
|
self.onCurrentIndexChanged(self.formatStack.currentIndex())
|
||||||
|
|
||||||
def validateCurrentPage(self):
|
def validateCurrentPage(self):
|
||||||
"""
|
"""
|
||||||
Validate the current page before moving on to the next page.
|
Validate the current page before moving on to the next page.
|
||||||
|
Loading…
Reference in New Issue
Block a user