diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-12-24 15:21:18 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-24 15:53:15 -0800 |
commit | 3dbdd2ee5e86dd8cba18ac8dd1e5774d7ebbb0c6 (patch) | |
tree | 633fd4dc8a01428d6f0542219d2776ee701ddd68 /mobile-widgets/qml | |
parent | 611c4bb088f856355e5c038e5c533af544b7f02a (diff) | |
download | subsurface-3dbdd2ee5e86dd8cba18ac8dd1e5774d7ebbb0c6.tar.gz |
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 <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |