diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-02-20 22:31:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 22:31:11 +0100 |
commit | e693a3debbe685f3632f1e420ac02a56ce26705d (patch) | |
tree | 1f61d2d28a3aae05b9f0a4f1d66fec186a3d3d86 /modules/mono/csharp_script.cpp | |
parent | 9c960a8c2494eb826a557a7ffc96dd4547f9d31e (diff) | |
parent | b3c64675cce2a99a1c8549569939fe57ff61eeea (diff) | |
download | redot-engine-e693a3debbe685f3632f1e420ac02a56ce26705d.tar.gz |
Merge pull request #73422 from bruvzg/no_alt
[macOS] Replace all `Alt/Option+Letter/Number` default shortcuts to avoid conflicts with special character input.
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r-- | modules/mono/csharp_script.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index fe0f4aae81..43d2779e41 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1147,6 +1147,7 @@ void CSharpLanguage::_editor_init_callback() { // Add plugin to EditorNode and enable it EditorNode::add_editor_plugin(godotsharp_editor); ED_SHORTCUT("mono/build_solution", TTR("Build Solution"), KeyModifierMask::ALT | Key::B); + ED_SHORTCUT_OVERRIDE("mono/build_solution", "macos", KeyModifierMask::META | KeyModifierMask::CTRL | Key::B); godotsharp_editor->enable_plugin(); get_singleton()->godotsharp_editor = godotsharp_editor; |