Merge pull request #28945 from Paulb23/28860_incorrect_characters

Fix text_edit drawing incorrect chars when syntax highlighting enabled
This commit is contained in:
Max Hilbrunner 2019-05-17 00:46:06 +02:00 committed by GitHub
commit a7a954e304
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;