mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 07:12:51 +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
|
||||
repeat: false
|
||||
onTriggered: {
|
||||
toScript({type: "initialized"})
|
||||
toScript({type: "initialized"});
|
||||
}
|
||||
}
|
||||
Timer {
|
||||
id: load_scroll_timer
|
||||
interval: 1000
|
||||
running: true
|
||||
repeat: false
|
||||
onTriggered: {
|
||||
scrollToBottom();
|
||||
}
|
||||
}
|
||||
// Component.onCompleted: {
|
||||
// toScript({type: "initialized"})
|
||||
// toScript({type: "initialized"});
|
||||
// }
|
||||
|
||||
// User view
|
||||
|
|
Loading…
Reference in a new issue