From 11f4b5efc56c09363ec637068d7c0b038a0a62cb Mon Sep 17 00:00:00 2001 From: Connall Lindsay Date: Sat, 26 Jan 2019 16:35:26 +0000 Subject: Brace completion for quotation marks was introducing another quotation mark at the end of the string, I think because it wasn't checking that the quotation mark didn't exist at the current cursors position. Simple change, that fixed the issue and stood up to testing. Issue #25084 --- scene/gui/text_edit.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scene') diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 09fbb39866..3da6d0085a 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -1494,8 +1494,7 @@ void TextEdit::_consume_pair_symbol(CharType ch) { } if ((ch == '\'' || ch == '"') && - cursor_get_column() > 0 && - _is_text_char(text[cursor.line][cursor_get_column() - 1])) { + cursor_get_column() > 0 && _is_text_char(text[cursor.line][cursor_get_column() - 1]) && !_is_pair_right_symbol(text[cursor.line][cursor_get_column()])) { insert_text_at_cursor(ch_single); cursor_set_column(cursor_position_to_move); return; -- cgit v1.2.3