Fix `Tabs` offset overreaching when scrolling fast
(cherry picked from commit 0dd65fff3b
)
This commit is contained in:
parent
72a922eb4e
commit
a5214f437f
|
@ -131,6 +131,7 @@ void Tabs::_gui_input(const Ref<InputEvent> &p_event) {
|
||||||
if (scrolling_enabled && buttons_visible) {
|
if (scrolling_enabled && buttons_visible) {
|
||||||
if (missing_right) {
|
if (missing_right) {
|
||||||
offset++;
|
offset++;
|
||||||
|
_ensure_no_over_offset(); // Avoid overreaching when scrolling fast.
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue