diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2019-08-22 20:07:16 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2019-08-22 20:07:16 +0100 |
commit | a5c1830a433209c86063fb4319a699b76898c3e7 (patch) | |
tree | 6370707436fde804392e3e89e05590e430ab0068 /scene/gui/text_edit.cpp | |
parent | 79a480a55e1ebada7f2987afeeb2039a39c8666b (diff) |
Fix minimap mouse click resolving to -1
Diffstat (limited to 'scene/gui/text_edit.cpp')
-rw-r--r-- | scene/gui/text_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 819fcc974d..f8c31121be 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -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 { |