diff options
author | HellonLegs <42913397+HellonLegs@users.noreply.github.com> | 2020-04-10 19:49:51 +0200 |
---|---|---|
committer | HellonLegs <42913397+HellonLegs@users.noreply.github.com> | 2020-04-10 19:49:51 +0200 |
commit | f412237f380d0590bed6bc89443fb6fa2bbe740d (patch) | |
tree | 939289b973d64c3b1b7b0d79d0075dc115115b78 /scene/gui/text_edit.cpp | |
parent | aeb95ef006109cbebc1a7d1e15f09e509c864583 (diff) | |
download | redot-engine-f412237f380d0590bed6bc89443fb6fa2bbe740d.tar.gz |
solved control + alt issue
Diffstat (limited to 'scene/gui/text_edit.cpp')
-rw-r--r-- | scene/gui/text_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 36e35897d1..17427dc17d 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -3762,7 +3762,7 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) { return; } - if (!keycode_handled && !k->get_command()) { // For German keyboards. + if (!keycode_handled && (!k->get_command() || (k->get_command() && k->get_alt()))) { // For German keyboards. if (k->get_unicode() >= 32) { |