aboutsummaryrefslogtreecommitdiff
path: root/scene/gui/text_edit.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2014-12-07 11:33:57 -0300
committerJuan Linietsky2014-12-07 11:33:57 -0300
commit10b371516bfd88f354acde9a2b37cf854eb92780 (patch)
treea064a5c4fa57b42184b928fc2dc825d88a1206d8 /scene/gui/text_edit.cpp
parentda91ca71645cccf38dc593ef790d09d4610c2aef (diff)
downloadgodot-10b371516bfd88f354acde9a2b37cf854eb92780.tar.gz
godot-10b371516bfd88f354acde9a2b37cf854eb92780.tar.zst
godot-10b371516bfd88f354acde9a2b37cf854eb92780.zip
More Fixes
-=-=-=-=-= -Bug in saving multinline text in xml fixed. #925 -typo in android export fixed. #930
Diffstat (limited to '')
-rw-r--r--scene/gui/text_edit.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp
index f1100c7c2..ba68948e6 100644
--- a/scene/gui/text_edit.cpp
+++ b/scene/gui/text_edit.cpp
@@ -1747,16 +1747,16 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
}
break;}
- default: {
+ default: {
- scancode_handled=false;
- } break;
+ scancode_handled=false;
+ } break;
}
if (scancode_handled)
accept_event();
-
+/*
if (!scancode_handled && !k.mod.command && !k.mod.alt) {
if (k.unicode>=32) {
@@ -1770,8 +1770,8 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
break;
}
}
-
- if (!scancode_handled && !k.mod.command && !k.mod.alt) {
+*/
+ if (!scancode_handled && !k.mod.command && !k.mod.alt) { //for german kbds
if (k.unicode>=32) {