RMG-Core: add KeyBinding_ViewSearch setting

This commit is contained in:
Rosalie Wanders
2025-05-06 00:44:48 +02:00
parent 1f24d20054
commit a110f48fad
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -500,6 +500,9 @@ static l_Setting get_setting(SettingsID settingId)
case SettingsID::Keybinding_ViewLog:
setting = {SETTING_SECTION_KEYBIND, "ViewLog", std::string("Ctrl+Alt+L")};
break;
case SettingsID::KeyBinding_ViewSearch:
setting = {SETTING_SECTION_KEYBIND, "ViewSearch", std::string("Ctrl+f")};
break;
case SettingsID::KeyBinding_GraphicsSettings:
setting = {SETTING_SECTION_KEYBIND, "GraphicsSettings", std::string("Ctrl+G")};
break;
+1
View File
@@ -167,6 +167,7 @@ enum class SettingsID
KeyBinding_SaveStateSlot9,
KeyBinding_Fullscreen,
Keybinding_ViewLog,
KeyBinding_ViewSearch,
KeyBinding_GraphicsSettings,
KeyBinding_AudioSettings,
KeyBinding_RspSettings,