Fix jumping when scrolling down fast with smooth scroll enabled
Fixes #24773
This commit is contained in:
parent
0e25c32a77
commit
3b2e03cf0b
@ -3259,7 +3259,6 @@ void TextEdit::_scroll_down(real_t p_delta) {
|
|||||||
int max_v_scroll = round(v_scroll->get_max() - v_scroll->get_page());
|
int max_v_scroll = round(v_scroll->get_max() - v_scroll->get_page());
|
||||||
if (target_v_scroll > max_v_scroll) {
|
if (target_v_scroll > max_v_scroll) {
|
||||||
target_v_scroll = max_v_scroll;
|
target_v_scroll = max_v_scroll;
|
||||||
v_scroll->set_value(target_v_scroll);
|
|
||||||
}
|
}
|
||||||
if (Math::abs(target_v_scroll - v_scroll->get_value()) < 1.0) {
|
if (Math::abs(target_v_scroll - v_scroll->get_value()) < 1.0) {
|
||||||
v_scroll->set_value(target_v_scroll);
|
v_scroll->set_value(target_v_scroll);
|
||||||
|
Loading…
Reference in New Issue
Block a user