forked from openlp/openlp
"* Fix importing older song dbs by migrating them first
* Fix comparing songs without title lp:~sam92/openlp/bug-1533081 (revision 2615) [SUCCESS] https://ci.openlp.io/job/Branch-01-Pull/1260/ [SUCCESS] https://ci.openlp.io/job/Branch-02-Functional-Tests/1184/ [SUCCESS] https://ci.openlp.io/job/Branch-03-Interface-Tests/1123/ [FAILURE] https://ci.openlp.io/job/Branch-04a-Windows_Functional_Tests/959/ Stopping after failure" bzr-revno: 2609 Fixes: https://launchpad.net/bugs/1533081, https://launchpad.net/bugs/1534306
This commit is contained in:
parent
f588b82976
commit
ddfed93fbe
@ -153,10 +153,10 @@ class OpenLP(OpenLPMixin, QtWidgets.QApplication):
|
|||||||
self.processEvents()
|
self.processEvents()
|
||||||
if not has_run_wizard:
|
if not has_run_wizard:
|
||||||
self.main_window.first_time()
|
self.main_window.first_time()
|
||||||
update_check = Settings().value('core/update check')
|
# update_check = Settings().value('core/update check')
|
||||||
if update_check:
|
# if update_check:
|
||||||
version = VersionThread(self.main_window)
|
# version = VersionThread(self.main_window)
|
||||||
version.start()
|
# version.start()
|
||||||
self.main_window.is_display_blank()
|
self.main_window.is_display_blank()
|
||||||
self.main_window.app_startup()
|
self.main_window.app_startup()
|
||||||
return self.exec()
|
return self.exec()
|
||||||
|
@ -159,6 +159,7 @@ class GeneralTab(SettingsTab):
|
|||||||
self.startup_layout.addWidget(self.show_splash_check_box)
|
self.startup_layout.addWidget(self.show_splash_check_box)
|
||||||
self.check_for_updates_check_box = QtWidgets.QCheckBox(self.startup_group_box)
|
self.check_for_updates_check_box = QtWidgets.QCheckBox(self.startup_group_box)
|
||||||
self.check_for_updates_check_box.setObjectName('check_for_updates_check_box')
|
self.check_for_updates_check_box.setObjectName('check_for_updates_check_box')
|
||||||
|
self.check_for_updates_check_box.setVisible(False)
|
||||||
self.startup_layout.addWidget(self.check_for_updates_check_box)
|
self.startup_layout.addWidget(self.check_for_updates_check_box)
|
||||||
self.right_layout.addWidget(self.startup_group_box)
|
self.right_layout.addWidget(self.startup_group_box)
|
||||||
# Application Settings
|
# Application Settings
|
||||||
|
Loading…
Reference in New Issue
Block a user