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>
This commit is contained in:
Dirk Hohndel 2019-12-24 15:21:18 -08:00
parent 611c4bb088
commit 3dbdd2ee5e

View file

@ -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 |