Fix text_edit drawing incorrect chars when syntax highlighting enabled

This commit is contained in:
Paulb23 2019-05-16 22:32:06 +01:00
parent 2522a43256
commit a8a0392c12

View file

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