summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-08-14 18:06:41 +0200
committerGitHub <noreply@github.com>2021-08-14 18:06:41 +0200
commit9f5c61315c76d5bb11d6deb7a81e4ec0e80298d5 (patch)
tree27ae077871cb042e6903ea24596ad2bbc8b0abf3
parent9f77ba4ec56ea6ea37e93f2448301e8d4b0af4da (diff)
parentcf95ce8b437a0b118860cf33375a40db53110ba6 (diff)
Merge pull request #51669 from KoBeWi/nextnextnextnextnext
Fix double Next Editor Tab
-rw-r--r--editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 19a6d027bc..702c79af90 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -7057,7 +7057,7 @@ EditorNode::EditorNode() {
ED_SHORTCUT("editor/command_palette", TTR("Open Command Palette"), KEY_MASK_CTRL | KEY_MASK_SHIFT | KEY_P);
#endif
ED_SHORTCUT_AND_COMMAND("editor/editor_next", TTR("Next Editor Tab"));
- ED_SHORTCUT_AND_COMMAND("editor/editor_prev", TTR("Next Editor Tab"));
+ ED_SHORTCUT_AND_COMMAND("editor/editor_prev", TTR("Previous Editor Tab"));
screenshot_timer = memnew(Timer);
screenshot_timer->set_one_shot(true);