summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorGeoffroy Warin <code@geowarin.com>2023-08-19 02:47:49 +0200
committerGeoffroy Warin <code@geowarin.com>2023-08-19 02:49:41 +0200
commit47897590356df8ef96be8a13232ac52c0a145a0e (patch)
tree228415d7f74dd75afeca7b7e363f1d09149db43e /modules
parentb51ee8b029b0b9f719f01bbdd21a329e65d4d238 (diff)
downloadredot-engine-47897590356df8ef96be8a13232ac52c0a145a0e.tar.gz
Fix GridMap shortcuts that should not be physical
Diffstat (limited to 'modules')
-rw-r--r--modules/gridmap/editor/grid_map_editor_plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gridmap/editor/grid_map_editor_plugin.cpp b/modules/gridmap/editor/grid_map_editor_plugin.cpp
index d7ecf4ef1a..ff2c8bad90 100644
--- a/modules/gridmap/editor/grid_map_editor_plugin.cpp
+++ b/modules/gridmap/editor/grid_map_editor_plugin.cpp
@@ -1178,8 +1178,8 @@ GridMapEditor::GridMapEditor() {
ED_SHORTCUT("grid_map/cursor_back_rotate_z", TTR("Cursor Back Rotate Z"), KeyModifierMask::SHIFT + Key::D, true);
ED_SHORTCUT("grid_map/cursor_clear_rotation", TTR("Cursor Clear Rotation"), Key::W, true);
ED_SHORTCUT("grid_map/paste_selects", TTR("Paste Selects"));
- ED_SHORTCUT("grid_map/duplicate_selection", TTR("Duplicate Selection"), KeyModifierMask::CTRL + Key::C, true);
- ED_SHORTCUT("grid_map/cut_selection", TTR("Cut Selection"), KeyModifierMask::CTRL + Key::X, true);
+ ED_SHORTCUT("grid_map/duplicate_selection", TTR("Duplicate Selection"), KeyModifierMask::CTRL + Key::C);
+ ED_SHORTCUT("grid_map/cut_selection", TTR("Cut Selection"), KeyModifierMask::CTRL + Key::X);
ED_SHORTCUT("grid_map/clear_selection", TTR("Clear Selection"), Key::KEY_DELETE);
ED_SHORTCUT("grid_map/fill_selection", TTR("Fill Selection"), KeyModifierMask::CTRL + Key::F);