summaryrefslogtreecommitdiffstats
path: root/scene/gui/text_edit.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-01-05 14:41:35 +0100
committerGitHub <noreply@github.com>2021-01-05 14:41:35 +0100
commit8b7f582f22bc5bd2ad55b3a4078af03612ec991b (patch)
treebe1a5cbf982a85b756b789eb7e81f835c894d6fe /scene/gui/text_edit.cpp
parent0abd7e7b356a1bff69e3ba1a131757eb3bbc21f3 (diff)
downloadredot-engine-8b7f582f22bc5bd2ad55b3a4078af03612ec991b.tar.gz
Revert "solved ctrl + alt + special character Issue #6851"
Diffstat (limited to 'scene/gui/text_edit.cpp')
-rw-r--r--scene/gui/text_edit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp
index f54e5d1dd7..75b875ff0b 100644
--- a/scene/gui/text_edit.cpp
+++ b/scene/gui/text_edit.cpp
@@ -3619,7 +3619,7 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
return;
}
- if (!keycode_handled && (!k->get_command() || (k->get_command() && k->get_alt()))) { // For German keyboards.
+ if (!keycode_handled && !k->get_command()) { // For German keyboards.
if (k->get_unicode() >= 32) {
if (readonly) {