mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 17:44:13 +02:00
Fix not scrolling to bottom on page change.
This commit is contained in:
parent
3453102359
commit
228fa85a0f
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue