summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2021-08-14 16:57:42 +0200
committerkobewi <kobewi4e@gmail.com>2021-08-14 16:57:42 +0200
commitcf95ce8b437a0b118860cf33375a40db53110ba6 (patch)
treece23be3e0c8012e5843708ff648600fc6350ca86 /editor
parent4e1d91f4d3628a2885ed0ba9393f0ff2d38d5071 (diff)
Fix double Next Editor Tab
Diffstat (limited to 'editor')
-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);