From 3dbdd2ee5e86dd8cba18ac8dd1e5774d7ebbb0c6 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 24 Dec 2019 15:21:18 -0800 Subject: [PATCH] mobile UI/login: fix PIN entry page In commit a4d299e01e ("mobile-widgets/qml: use showPin/oldStatus consistently") one instance of rootItem.showPin wasn't replaced with prefs.showPin and as a result we had a very strange password entry line in the middle of the PIN entry screen. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/CloudCredentials.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 335645cbc..c19f06370 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -75,7 +75,7 @@ Item { Controls.TextField { id: password text: PrefCloudStorage.cloud_storage_password - visible: !rootItem.showPin + visible: !prefs.showPin echoMode: TextInput.PasswordEchoOnEdit inputMethodHints: Qt.ImhSensitiveData | Qt.ImhHiddenText |