1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Fix scroll bar lock when smooth scroll enabled, issue 23314

This commit is contained in:
Paulb23
2018-11-24 14:01:34 +00:00
parent 8348aca118
commit 9e57c359b7

View File

@@ -330,6 +330,8 @@ void ScrollBar::_notification(int p_what) {
if (Math::abs(vel) >= dist) {
set_value(target_scroll);
scrolling = false;
set_physics_process_internal(false);
} else {
set_value(get_value() + vel);
}