Fixed autocomlete strings not appearing for function arguments

This commit is contained in:
Paulb23 2016-05-08 13:18:50 +01:00
parent 8a45936abd
commit 9e6234201b
1 changed files with 1 additions and 1 deletions

View File

@ -3903,7 +3903,7 @@ void TextEdit::_update_completion_candidates() {
} }
} }
if (l[cursor.column - 1] == '(' && !pre_keyword) { if (l[cursor.column - 1] == '(' && !pre_keyword && !completion_strings[0].begins_with("\"")) {
cancel = true; cancel = true;
} }