diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2016-05-08 13:18:50 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2016-05-08 13:18:50 +0100 |
commit | 9e6234201bdd9abbd780d75d5c5e1ead454d4c20 (patch) | |
tree | d398e2f363ed0d8b79f9639d6a50b0ac347a0a33 /scene/gui | |
parent | 8a45936abd8679b5128e9d990b2c563afac72379 (diff) |
Fixed autocomlete strings not appearing for function arguments
Diffstat (limited to 'scene/gui')
-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 a8a3cb5537..bf8aff0f44 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -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; } |