Mobile: Fix QML Warnings.

Fix some runtime warnings when running the mobile build caused by
binding loops and deprecated handler syntax.

Signed-off-by: Michael Keller <mikeller@042.ch>
This commit is contained in:
Michael Keller 2024-05-28 14:20:55 +12:00
parent d9f50bb8e0
commit a39f0e2891
6 changed files with 22 additions and 15 deletions

View file

@ -32,10 +32,10 @@ Kirigami.ScrollablePage {
}
Connections {
target: Backend
onLengthChanged: {
function onLengthChanged() {
reload()
}
onVolumeChanged: {
function onVolumeChanged() {
reload()
}
}