Scroll to bottom on launch.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
Armored Dragon 2024-05-26 20:30:33 -05:00
parent 8301bfd626
commit 82605c50c4
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -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