mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:27:48 +02:00
Scroll to bottom on launch.
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
8301bfd626
commit
82605c50c4
1 changed files with 11 additions and 2 deletions
|
@ -20,11 +20,20 @@ Rectangle {
|
||||||
running: true
|
running: true
|
||||||
repeat: false
|
repeat: false
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
toScript({type: "initialized"})
|
toScript({type: "initialized"});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Timer {
|
||||||
|
id: load_scroll_timer
|
||||||
|
interval: 1000
|
||||||
|
running: true
|
||||||
|
repeat: false
|
||||||
|
onTriggered: {
|
||||||
|
scrollToBottom();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Component.onCompleted: {
|
// Component.onCompleted: {
|
||||||
// toScript({type: "initialized"})
|
// toScript({type: "initialized"});
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// User view
|
// User view
|
||||||
|
|
Loading…
Reference in a new issue