diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-31 22:09:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-31 22:09:53 +0200 |
commit | 00aabec8bb598592b8a8702797b51fc9f6ca6169 (patch) | |
tree | 3fea3b9deeebcfa88f85b7ccfa7b6fc9de144a2d | |
parent | 3fdf85cd9b12a8cd6ebb5467603230c2ac853613 (diff) | |
parent | b1aaeb07ea57ea9881389b637f41ebd8883c06ed (diff) |
Merge pull request #31828 from Paulb23/minimap_drag_less_then_control
Fix minimap drag when height is less then control size
-rw-r--r-- | scene/gui/text_edit.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 65554b1f5e..ab5ed3166c 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -596,8 +596,14 @@ void TextEdit::_update_minimap_drag() { return; } + int control_height = _get_control_height(); + int scroll_height = v_scroll->get_max() * (minimap_char_size.y + minimap_line_spacing); + if (control_height > scroll_height) { + control_height = scroll_height; + } + Point2 mp = get_local_mouse_position(); - double diff = (mp.y - minimap_scroll_click_pos) / _get_control_height(); + double diff = (mp.y - minimap_scroll_click_pos) / control_height; v_scroll->set_as_ratio(minimap_scroll_ratio + diff); } |