Fix not scrolling to bottom on page change.

This commit is contained in:
armored-dragon 2025-03-28 15:38:36 -05:00
parent 3453102359
commit 228fa85a0f
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -78,6 +78,7 @@ Rectangle {
anchors.fill: parent anchors.fill: parent
onClicked: { onClicked: {
pageVal = "local"; pageVal = "local";
load_scroll_timer.bypassDistanceCheck = true;
load_scroll_timer.running = true; load_scroll_timer.running = true;
} }
} }
@ -106,7 +107,8 @@ Rectangle {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onClicked: { onClicked: {
pageVal = "domain" pageVal = "domain";
load_scroll_timer.bypassDistanceCheck = true;
load_scroll_timer.running = true; load_scroll_timer.running = true;
} }
} }