summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/CloudCredentials.qml
diff options
context:
space:
mode:
authorGravatar Joakim Bygdell <j.bygdell@gmail.com>2017-07-20 19:39:55 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-23 03:20:58 +0900
commit6655b37add8c1dbee23d734fa6eb8f4c0bec9aae (patch)
tree2d94e6de766b5a3b24f45114e342673b574d0c88 /mobile-widgets/qml/CloudCredentials.qml
parente80132cdef038fdff253f59979fbb8789e325315 (diff)
downloadsubsurface-6655b37add8c1dbee23d734fa6eb8f4c0bec9aae.tar.gz
Mobile: consolidate settings to one page and menu entry
Addresses: #492 Signed-off-by: Rick Walsh <rickmwalsh@gmail.com> Had a bit of rebase issue with this one. Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-rw-r--r--mobile-widgets/qml/CloudCredentials.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml
index d69f0476c..9a7a8c2bd 100644
--- a/mobile-widgets/qml/CloudCredentials.qml
+++ b/mobile-widgets/qml/CloudCredentials.qml
@@ -9,7 +9,7 @@ import org.subsurfacedivelog.mobile 1.0
Item {
id: loginWindow
- height: outerLayout.height + 2 * Kirigami.Units.gridUnit
+ height: outerLayout.height
property string username: login.text;
property string password: password.text;
@@ -82,7 +82,7 @@ Item {
GridLayout {
columns: 2
- CheckBox {
+ Switch {
checked: false
id: showPassword
onCheckedChanged: {
@@ -104,7 +104,5 @@ Item {
Layout.fillWidth: true
visible: rootItem.showPin
}
-
- Item { width: Kirigami.Units.gridUnit; height: width }
}
}