mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 21:33:48 +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
|
||||
onClicked: {
|
||||
pageVal = "local";
|
||||
load_scroll_timer.bypassDistanceCheck = true;
|
||||
load_scroll_timer.running = true;
|
||||
}
|
||||
}
|
||||
|
@ -106,7 +107,8 @@ Rectangle {
|
|||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onClicked: {
|
||||
pageVal = "domain"
|
||||
pageVal = "domain";
|
||||
load_scroll_timer.bypassDistanceCheck = true;
|
||||
load_scroll_timer.running = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue