From 6efb814f3a5b68f5f31808f40030fed4b9e431cd Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 24 Oct 2022 01:45:56 +0200 Subject: [PATCH] Fix can-change-password check --- src/qml/Settings/AccountEditorPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Settings/AccountEditorPage.qml b/src/qml/Settings/AccountEditorPage.qml index bf7661846..5bb4c3493 100644 --- a/src/qml/Settings/AccountEditorPage.qml +++ b/src/qml/Settings/AccountEditorPage.qml @@ -70,7 +70,7 @@ Kirigami.ScrollablePage { Controls.TextField { id: currentPassword Kirigami.FormData.label: i18n("Current Password:") - enabled: roto.connection !== undefined && root.connection.canChangePassword !== false + enabled: root.connection !== undefined && root.connection.canChangePassword !== false echoMode: TextInput.Password } Controls.TextField {