Fixed the preferences gui keyboard shortcut.

This commit is contained in:
Storm Dragon 2024-12-18 19:25:24 -05:00
parent e9916bbcc4
commit d863cf0353

View File

@ -209,6 +209,16 @@ class Script(script.Script):
cthulhu.quitCthulhu, cthulhu.quitCthulhu,
cmdnames.QUIT_CTHULHU) cmdnames.QUIT_CTHULHU)
self.inputEventHandlers["preferencesSettingsHandler"] = \
input_event.InputEventHandler(
orca.showPreferencesGUI,
cmdnames.SHOW_PREFERENCES_GUI)
self.inputEventHandlers["appPreferencesSettingsHandler"] = \
input_event.InputEventHandler(
orca.showAppPreferencesGUI,
cmdnames.SHOW_APP_PREFERENCES_GUI)
self.inputEventHandlers["cycleSettingsProfileHandler"] = \ self.inputEventHandlers["cycleSettingsProfileHandler"] = \
input_event.InputEventHandler( input_event.InputEventHandler(
Script.cycleSettingsProfile, Script.cycleSettingsProfile,