mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
611c4bb088
commit
3dbdd2ee5e
1 changed files with 1 additions and 1 deletions
|
@ -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 |
|
||||
|
|
Loading…
Reference in a new issue