mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
Don't assign Toggle Toolbars keyboard shortcut by default (#22424)
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
- Improved: [#22352] The object selection window now groups relevant object tabs together.
|
||||
- Improved: [#22357] Error messages are now themeable and easier to read.
|
||||
- Improved: [#22361] Add additional colour preset for the Observation Tower.
|
||||
- Change: [#12292] The ‘Toggle visibility of toolbars’ shortcut is no longer assigned by default.
|
||||
- Change: [#21494] Display pixel density is now taken into account for the initial window scale setting.
|
||||
- Change: [#22230] The plugin/script engine is now initialised off the main thread.
|
||||
- Change: [#22251] Hide author info in the scenery window unless debug tools are active.
|
||||
|
||||
@@ -789,7 +789,7 @@ void ShortcutManager::RegisterDefaultShortcuts()
|
||||
});
|
||||
RegisterShortcut(ShortcutId::InterfaceDecreaseSpeed, STR_SHORTCUT_REDUCE_GAME_SPEED, "-", ShortcutReduceGameSpeed);
|
||||
RegisterShortcut(ShortcutId::InterfaceIncreaseSpeed, STR_SHORTCUT_INCREASE_GAME_SPEED, "=", ShortcutIncreaseGameSpeed);
|
||||
RegisterShortcut(ShortcutId::InterfaceToggleToolbars, STR_SHORTCUT_TOGGLE_VISIBILITY_OF_TOOLBARS, "T", ShortcutRemoveTopBottomToolbarToggle);
|
||||
RegisterShortcut(ShortcutId::InterfaceToggleToolbars, STR_SHORTCUT_TOGGLE_VISIBILITY_OF_TOOLBARS, ShortcutRemoveTopBottomToolbarToggle);
|
||||
RegisterShortcut(ShortcutId::InterfaceScreenshot, STR_SHORTCUT_SCREENSHOT, "CTRL+S", []() { gScreenshotCountdown = 2; });
|
||||
RegisterShortcut(ShortcutId::InterfaceGiantScreenshot, STR_SHORTCUT_GIANT_SCREENSHOT, "CTRL+SHIFT+S", ScreenshotGiant);
|
||||
RegisterShortcut(ShortcutId::InterfaceLoadGame, STR_LOAD_GAME, "CTRL+L", ShortcutLoadGame);
|
||||
|
||||
Reference in New Issue
Block a user