diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-07 12:15:19 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-07 22:57:01 -0700 |
commit | 12f0af19cbfec25befa9f2c2aee42edbee65068a (patch) | |
tree | a1cf80ed0d2ff11455bd60321ec5dba45cb1edc6 | |
parent | 41ab12533b33174c080fcdd0008a56f3bde6194b (diff) | |
download | subsurface-12f0af19cbfec25befa9f2c2aee42edbee65068a.tar.gz |
QML UI: remove redundant heading
This makes the start page look a bit more natural
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/StartPage.qml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mobile-widgets/qml/StartPage.qml b/mobile-widgets/qml/StartPage.qml index 2d70cfcb3..41fe469c2 100644 --- a/mobile-widgets/qml/StartPage.qml +++ b/mobile-widgets/qml/StartPage.qml @@ -11,15 +11,11 @@ ColumnLayout { function saveCredentials() { cloudCredentials.saveCredentials() } - Kirigami.Heading { - Layout.margins: Kirigami.Units.gridUnit - text: "Subsurface-mobile" - } Kirigami.Label { id: explanationText Layout.fillWidth: true Layout.margins: Kirigami.Units.gridUnit - Layout.topMargin: 0 + Layout.topMargin: Kirigami.Units.gridUnit * 3 text: "In order to use Subsurface-mobile you need to have a Subsurface cloud storage account " + "(which can be created with the Subsurface desktop application)." wrapMode: Text.WordWrap |