forked from openlp/openlp
fixes bug #1066142 "cancel firsttime wizard without song causes song reindexing"
bzr-revno: 2102 Fixes: https://launchpad.net/bugs/1066142
This commit is contained in:
commit
b47512254b
@ -817,7 +817,10 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
|
||||
return
|
||||
Receiver.send_message(u'cursor_busy')
|
||||
screens = ScreenList()
|
||||
FirstTimeForm(screens, self).exec_()
|
||||
firstTime = FirstTimeForm(screens, self)
|
||||
firstTime.exec_()
|
||||
if firstTime.downloadCancelled:
|
||||
return
|
||||
self.firstTime()
|
||||
for plugin in self.pluginManager.plugins:
|
||||
self.activePlugin = plugin
|
||||
|
Loading…
Reference in New Issue
Block a user