Merge pull request #31580 from Paulb23/issue_31565_out_of_size

Fix minimap mouse click resolving to -1
This commit is contained in:
Rémi Verschelde 2019-08-22 22:23:43 +02:00 committed by GitHub
commit 89bcfa4b36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2083,7 +2083,7 @@ void TextEdit::_get_minimap_mouse_row(const Point2i &p_mouse, int &r_row) const
int num_lines_before = round((viewport_offset_y) / minimap_line_height);
int wi;
int minimap_line = (v_scroll->get_max() <= minimap_visible_lines) ? -1 : first_visible_line;
if (first_visible_line >= 0 && minimap_line >= 0) {
if (first_visible_line > 0 && minimap_line >= 0) {
minimap_line -= num_lines_from_rows(first_visible_line, 0, -num_lines_before, wi);
minimap_line -= (smooth_scroll_enabled ? 1 : 0);
} else {