Fixed autocomplete truncate, issue 4554

(cherry picked from commit accc2a195b)
This commit is contained in:
Paulb23 2016-05-05 16:27:05 +01:00 committed by Rémi Verschelde
parent a5e54b83ec
commit abc97d3bb4
1 changed files with 15 additions and 23 deletions

View File

@ -1644,12 +1644,6 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
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};
if(auto_brace_completion_enabled && _is_pair_symbol(chr[0])) {
_consume_pair_symbol(chr[0]);
@ -1671,8 +1665,6 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
end_complex_operation();
}
}
}
_update_completion_candidates();
accept_event();