diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-09-29 09:15:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-09-29 08:13:25 -0700 |
commit | e2aaa43d8c53289928e8d9cbc2cbad5e4518da29 (patch) | |
tree | d4ff93ed8a377c5fb63fa91ef2814b97903ab339 /mobile-widgets/qml/CloudCredentials.qml | |
parent | dbed88bd810c545a100840d02f2e72168680ed72 (diff) | |
download | subsurface-e2aaa43d8c53289928e8d9cbc2cbad5e4518da29.tar.gz |
QML UI: cleanup some whitespace and string formatting
This addresses some review comment on whitespace and translated
string formatting.
In the string formatting, a tiny additional change is made.
I wanted the email address in the explanation text in a bold
font. Using the HTML <b> for this, removed the /n newline
characters in the output. Apparantly, mixing these two
formatting styles does not work. No problem, replaced the
/n to HTML style too.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 720783142..083bbdc65 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -103,7 +103,7 @@ Item { spacing: Kirigami.Units.smallSpacing visible: rootItem.showPin SsrfButton { - id:registerpin + id: registerpin text: qsTr("Register") onClicked: { saveCredentials() @@ -131,7 +131,7 @@ Item { visible: !rootItem.showPin SsrfButton { - id:signin_register_normal + id: signin_register_normal text: qsTr("Sign-in or Register") onClicked: { saveCredentials() |