Fix text_edit drawing incorrect chars when syntax highlighting enabled

(cherry picked from commit a8a0392c12)
This commit is contained in:
Paulb23 2019-05-16 22:32:06 +01:00 committed by Rémi Verschelde
parent 390dbbbcbd
commit 909a1cced8
1 changed files with 1 additions and 4 deletions

View File

@ -1009,10 +1009,7 @@ void TextEdit::_notification(int p_what) {
} }
if ((char_ofs + char_margin + char_w) >= xmargin_end) { if ((char_ofs + char_margin + char_w) >= xmargin_end) {
if (syntax_coloring) break;
continue;
else
break;
} }
bool in_search_result = false; bool in_search_result = false;