Others: chores fix a QML warning when no account is present, and a few typos in QML.

This commit is contained in:
Xavier Michelon
2023-01-18 11:04:13 +01:00
parent a00e2acb5c
commit 5459720523
7 changed files with 7 additions and 7 deletions

View File

@ -180,7 +180,7 @@ Item {
property string dots: ""
interval: 250;
repeat: true;
running: root.user && (root.user.state === EUserState.Locked)
running: (root.user != null) && (root.user.state === EUserState.Locked)
onTriggered: {
dots = dots + "."
if (dots.length > 3)