diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-20 16:35:12 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-24 10:22:39 -0800 |
commit | ac28896a5d448a918843b4dc34afdf3e1e35e245 (patch) | |
tree | 1f2aa2082763761adeef2f502473d341deee0068 /mobile-widgets/qml/main.qml | |
parent | 4b713ece96a435f92589afcf89e3d93c37dfcbd8 (diff) | |
download | subsurface-ac28896a5d448a918843b4dc34afdf3e1e35e245.tar.gz |
mobile UI/login: replace use of cloudUserName
Replace prefs.cloudUserName with PrefCloudStorage.cloud_storage_email in QML
Replace QMLPrefs.....cloudUserName with PrefCloudStorage::cloud_storage_email in C++
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 3737f3357..728a06d08 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -225,7 +225,7 @@ Kirigami.ApplicationWindow { visible: text.length > 0 level: 3 color: "white" - text: prefs.cloudUserName + text: PrefCloudStorage.cloud_storage_email wrapMode: Text.NoWrap elide: Text.ElideRight font.weight: Font.Normal |