From: Matthieu Gallien Date: Tue, 16 May 2023 09:36:59 +0000 (+0200) Subject: small qml cleanup to make code faster to read X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~10^2~44^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8f60518d6fbb2e0f73969ea817813b19c0c1a4a3;p=nextcloud-desktop.git small qml cleanup to make code faster to read Signed-off-by: Matthieu Gallien --- diff --git a/src/gui/tray/SyncStatus.qml b/src/gui/tray/SyncStatus.qml index 40c6553c6..40167322c 100644 --- a/src/gui/tray/SyncStatus.qml +++ b/src/gui/tray/SyncStatus.qml @@ -151,8 +151,6 @@ RowLayout { NC.UserModel.currentUser.hasLocalFolder && NC.UserModel.currentUser.isConnected enabled: visible - onClicked: { - NC.Systray.createResolveConflictsDialog(activityModel.allConflicts); - } + onClicked: NC.Systray.createResolveConflictsDialog(activityModel.allConflicts); } }