diff --git a/openlp/core/common/settings.py b/openlp/core/common/settings.py index 297e1d37f..f974d949b 100644 --- a/openlp/core/common/settings.py +++ b/openlp/core/common/settings.py @@ -130,9 +130,6 @@ class Settings(QtCore.QSettings): ``advanced/slide limits`` to ``SlideLimits.Wrap``. **NOTE**, this means that the rules have to cover all cases! So, if the type of the old value is bool, then there must be two rules. """ - on_monitor_default = True - if log.isEnabledFor(logging.DEBUG): - on_monitor_default = False __default_settings__ = { 'settings/version': 0, 'advanced/add page break': False, @@ -205,7 +202,7 @@ class Settings(QtCore.QSettings): 'core/view mode': 'default', # The other display settings (display position and dimensions) are defined in the ScreenList class due to a # circular dependency. - 'core/display on monitor': on_monitor_default, + 'core/display on monitor': False, 'core/override position': False, 'core/monitor': {}, 'core/application version': '0.0',