mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-24 02:46:44 +00:00
Others: chores fix a QML warning when no account is present, and a few typos in QML.
This commit is contained in:
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user