Fixed autocomplete truncate, issue 4554
This commit is contained in:
parent
9487a9b3c2
commit
accc2a195b
|
@ -1659,12 +1659,6 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
||||||
|
|
||||||
if (k.unicode>32) {
|
if (k.unicode>32) {
|
||||||
|
|
||||||
if (cursor.column<text[cursor.line].length() && text[cursor.line][cursor.column]==k.unicode) {
|
|
||||||
//same char, move ahead
|
|
||||||
cursor_set_column(cursor.column+1);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
//different char, go back
|
|
||||||
const CharType chr[2] = {(CharType)k.unicode, 0};
|
const CharType chr[2] = {(CharType)k.unicode, 0};
|
||||||
if(auto_brace_completion_enabled && _is_pair_symbol(chr[0])) {
|
if(auto_brace_completion_enabled && _is_pair_symbol(chr[0])) {
|
||||||
_consume_pair_symbol(chr[0]);
|
_consume_pair_symbol(chr[0]);
|
||||||
|
@ -1686,8 +1680,6 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
||||||
end_complex_operation();
|
end_complex_operation();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
_update_completion_candidates();
|
_update_completion_candidates();
|
||||||
accept_event();
|
accept_event();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue