forked from openlp/openlp
commit
4b70323994
@ -186,11 +186,19 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
|
|||||||
Determine the next page in the Wizard to go to.
|
Determine the next page in the Wizard to go to.
|
||||||
"""
|
"""
|
||||||
Receiver.send_message(u'openlp_process_events')
|
Receiver.send_message(u'openlp_process_events')
|
||||||
|
# If we are currently on the plugins page
|
||||||
if self.currentId() == FirstTimePage.Plugins:
|
if self.currentId() == FirstTimePage.Plugins:
|
||||||
|
# But we don't have Internet access
|
||||||
if not self.webAccess:
|
if not self.webAccess:
|
||||||
return FirstTimePage.NoInternet
|
return FirstTimePage.NoInternet
|
||||||
else:
|
# The songs plugin is enabled
|
||||||
|
elif self.songsCheckBox.isChecked():
|
||||||
return FirstTimePage.Songs
|
return FirstTimePage.Songs
|
||||||
|
# The Bibles plugin is enabled
|
||||||
|
elif self.bibleCheckBox.isChecked():
|
||||||
|
return FirstTimePage.Bibles
|
||||||
|
else:
|
||||||
|
return FirstTimePage.Themes
|
||||||
elif self.currentId() == FirstTimePage.Progress:
|
elif self.currentId() == FirstTimePage.Progress:
|
||||||
return -1
|
return -1
|
||||||
elif self.currentId() == FirstTimePage.NoInternet:
|
elif self.currentId() == FirstTimePage.NoInternet:
|
||||||
|
Loading…
Reference in New Issue
Block a user