forked from Silverfish/proton-bridge
Other: fix Warning introduced by connecting check timer.
This commit is contained in:
@ -155,7 +155,7 @@ Item {
|
||||
property string dots: ""
|
||||
interval: 250;
|
||||
repeat: true;
|
||||
running: (root.user.state === EUserState.Locked)
|
||||
running: root.user && (root.user.state === EUserState.Locked)
|
||||
onTriggered: {
|
||||
dots = dots + "."
|
||||
if (dots.length > 3)
|
||||
|
||||
Reference in New Issue
Block a user