Hopefully fix the -s flag which was broken by plugin updates.

This commit is contained in:
Storm Dragon 2024-11-28 06:22:07 -05:00
parent 17febf488c
commit ba6382c3cd

View File

@ -530,6 +530,18 @@ def loadUserSettings(script=None, inputEvent=None, skipReloadMessage=False):
return True return True
def showPreferencesGUI(script=None, inputEvent=None):
"""Displays the user interface to configure Cthulhu and set up
user preferences using a GUI.
Returns True to indicate the input event has been consumed.
"""
prefs = _settingsManager.getGeneralSettings(_settingsManager.profile)
script = _scriptManager.getDefaultScript()
_showPreferencesUI(script, prefs)
return True
def addKeyGrab(binding): def addKeyGrab(binding):
""" Add a key grab for the given key binding.""" """ Add a key grab for the given key binding."""