diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 3ecb4aed9..4cdbe81b5 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -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