Merge pull request #61980 from KoBeWi/obliterate_scroll
Disable scroll when dragging at edges of TextEdit
This commit is contained in:
commit
0c5c5381d7
1 changed files with 6 additions and 4 deletions
|
@ -2764,10 +2764,12 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
||||||
_get_mouse_pos(Point2i(mp.x, mp.y), row, col);
|
_get_mouse_pos(Point2i(mp.x, mp.y), row, col);
|
||||||
cursor_set_line(row, true);
|
cursor_set_line(row, true);
|
||||||
cursor_set_column(col);
|
cursor_set_column(col);
|
||||||
if (row <= get_first_visible_line()) {
|
if (!scroll_past_end_of_file_enabled) {
|
||||||
_scroll_lines_up();
|
if (row <= get_first_visible_line()) {
|
||||||
} else if (row >= get_last_full_visible_line()) {
|
_scroll_lines_up();
|
||||||
_scroll_lines_down();
|
} else if (row >= get_last_full_visible_line()) {
|
||||||
|
_scroll_lines_down();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dragging_selection = true;
|
dragging_selection = true;
|
||||||
update();
|
update();
|
||||||
|
|
Loading…
Reference in a new issue