From 46703737315e6ef6d896ee6388ca1c46661a57b7 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 27 Mar 2016 19:10:58 -0500 Subject: [PATCH] QML UI: tighten credential input screen This way even on smaller screens both email and password should fit above the keyboard which makes data entry so much easier. Signed-off-by: Dirk Hohndel --- qt-mobile/qml/StartPage.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qt-mobile/qml/StartPage.qml b/qt-mobile/qml/StartPage.qml index 3a60d0a66..9ce321438 100644 --- a/qt-mobile/qml/StartPage.qml +++ b/qt-mobile/qml/StartPage.qml @@ -21,6 +21,7 @@ ColumnLayout { id: explanationText Layout.fillWidth: true Layout.margins: MobileComponents.Units.gridUnit + Layout.topMargin: 0 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 @@ -29,6 +30,7 @@ ColumnLayout { id: messageArea Layout.fillWidth: true Layout.margins: MobileComponents.Units.gridUnit + Layout.topMargin: 0 text: manager.startPageText wrapMode: Text.WordWrap } @@ -36,7 +38,7 @@ ColumnLayout { id: cloudCredentials Layout.fillWidth: true Layout.margins: MobileComponents.Units.gridUnit - Layout.topMargin: MobileComponents.Units.gridUnit * 2 + Layout.topMargin: 0 property int headingLevel: 3 } }