summaryrefslogtreecommitdiffstats
path: root/scene/gui/text_edit.cpp
diff options
context:
space:
mode:
authorDaniel J. Ramirez <djrmuv@gmail.com>2016-06-25 19:02:17 -0500
committerDaniel J. Ramirez <djrmuv@gmail.com>2016-06-26 10:21:02 -0500
commit8f259ff5ca04635d3c229c1947741fe828a96f98 (patch)
treebe0cc314fc2fc89cb25d84bddd0d5ec19c14205f /scene/gui/text_edit.cpp
parent620da09b8714b446b2fc2fb0a9d897ce502f0377 (diff)
downloadredot-engine-8f259ff5ca04635d3c229c1947741fe828a96f98.tar.gz
Shortcuts for script switching in script Mode
Diffstat (limited to 'scene/gui/text_edit.cpp')
-rw-r--r--scene/gui/text_edit.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp
index 6fd6137ac8..5a6660819c 100644
--- a/scene/gui/text_edit.cpp
+++ b/scene/gui/text_edit.cpp
@@ -1973,6 +1973,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
}
} break;
case KEY_TAB: {
+ if (k.mod.command) break; // avoid tab when command
if (readonly)
break;