From 2dba6a892c962336fa48287c3f5ae540a5a675da Mon Sep 17 00:00:00 2001 From: Pier Luigi Fiorini Date: Fri, 30 Jun 2023 07:21:04 +0200 Subject: [PATCH] Fix authentication dialog Correct a typo. --- src/helper/qml/AuthDialog.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/helper/qml/AuthDialog.qml b/src/helper/qml/AuthDialog.qml index 26556d6d..fa0e14b4 100644 --- a/src/helper/qml/AuthDialog.qml +++ b/src/helper/qml/AuthDialog.qml @@ -47,7 +47,7 @@ Window { title: qsTr("Authentication required") focus: true - visible: logoutDialogWindow.visible + visible: authDialogWindow.visible onOpened: { // Give focus to the password field @@ -68,11 +68,11 @@ Window { onAccepted: { policyKitAgent.authenticate(passwordInput.text); - logoutDialogWindow.hide(); + authDialogWindow.hide(); } onRejected: { policyKitAgent.abortAuthentication(); - logoutDialogWindow.hide(); + authDialogWindow.hide(); } ColumnLayout {