Merge pull request #38782 from mbrlabs/text-editor-fix

Fixed text editor drawing if smooth scrolling is disabled.
This commit is contained in:
Rémi Verschelde 2020-05-16 19:26:55 +02:00 committed by GitHub
commit 163687d17a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1121,9 +1121,7 @@ void TextEdit::_notification(int p_what) {
int ofs_y = (i * get_row_height() + cache.line_spacing / 2) + ofs_readonly;
ofs_y -= cursor.wrap_ofs * get_row_height();
if (smooth_scroll_enabled) {
ofs_y += (-get_v_scroll_offset()) * get_row_height();
}
ofs_y -= get_v_scroll_offset() * get_row_height();
// Check if line contains highlighted word.
int highlighted_text_col = -1;