forked from openlp/openlp
Set the default value of core/display_on_monitor to False to avoid blocking the screen with the display window on first start.
This commit is contained in:
parent
4c1f67f84b
commit
4361159434
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user