diff options
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 6 |
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 } } } |