summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-08-21 08:22:56 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-08-21 08:22:56 +0200
commita723a8d8229e44519189f6617f3d8e93e6a3a77d (patch)
treeb92390de3bdd25407b4195372e0b8348d86886b5
parent9becff0c54ffb5aee65d0abef6443cdf2b01dfbb (diff)
parent47897590356df8ef96be8a13232ac52c0a145a0e (diff)
downloadredot-engine-a723a8d8229e44519189f6617f3d8e93e6a3a77d.tar.gz
Merge pull request #80774 from geowarin/fix-grid-map-physical
Fix GridMap shortcuts that should not be physical
-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);