You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
[macOS] Replace all Alt/Option+Letter/Number default shortcuts to avoid conflicts with special character input.
This commit is contained in:
@@ -1705,6 +1705,11 @@ EditorFileDialog::EditorFileDialog() {
|
||||
ED_SHORTCUT("file_dialog/move_favorite_up", TTR("Move Favorite Up"), KeyModifierMask::CMD_OR_CTRL | Key::UP);
|
||||
ED_SHORTCUT("file_dialog/move_favorite_down", TTR("Move Favorite Down"), KeyModifierMask::CMD_OR_CTRL | Key::DOWN);
|
||||
|
||||
if (EditorSettings::get_singleton()) {
|
||||
ED_SHORTCUT_OVERRIDE("file_dialog/toggle_favorite", "macos", KeyModifierMask::META | KeyModifierMask::CTRL | Key::F);
|
||||
ED_SHORTCUT_OVERRIDE("file_dialog/toggle_mode", "macos", KeyModifierMask::META | KeyModifierMask::CTRL | Key::V);
|
||||
}
|
||||
|
||||
HBoxContainer *pathhb = memnew(HBoxContainer);
|
||||
|
||||
dir_prev = memnew(Button);
|
||||
|
||||
Reference in New Issue
Block a user