diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-09-26 11:46:33 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-26 08:38:53 -0700 |
commit | 8ab8a67f818952b7f720276160c25847bad93480 (patch) | |
tree | 4982b80ee4a5a1fa9cbb898db39e8b10fe05a2b8 /mobile-widgets/qml/SsrfCheckBox.qml | |
parent | 7367d2535f89293d4fbff55e4494b48b41cb91b8 (diff) | |
download | subsurface-8ab8a67f818952b7f720276160c25847bad93480.tar.gz |
mobile, QML UI: make SsrfCheckBox resizable
Changed some hard coded size and positioning of the SsrfCheckBox,
in such a way that is scales nicely to the current setting of the
mobile_scale.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml/SsrfCheckBox.qml')
-rw-r--r-- | mobile-widgets/qml/SsrfCheckBox.qml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/mobile-widgets/qml/SsrfCheckBox.qml b/mobile-widgets/qml/SsrfCheckBox.qml index f7b1375a6..a71a623c4 100644 --- a/mobile-widgets/qml/SsrfCheckBox.qml +++ b/mobile-widgets/qml/SsrfCheckBox.qml @@ -1,13 +1,14 @@ // SPDX-License-Identifier: GPL-2.0 import QtQuick 2.6 import QtQuick.Controls 2.2 +import org.subsurfacedivelog.mobile 1.0 import org.kde.kirigami 2.2 as Kirigami CheckBox { id: root indicator: Rectangle { - implicitWidth: 20 - implicitHeight: 20 + implicitWidth: 20 * PrefDisplay.mobile_scale + implicitHeight: 20 * PrefDisplay.mobile_scale x: root.leftPadding y: parent.height / 2 - height / 2 radius: 4 @@ -16,10 +17,10 @@ CheckBox { color: subsurfaceTheme.backgroundColor Rectangle { - width: 12 - height: 12 - x: 4 - y: 4 + width: 12 * PrefDisplay.mobile_scale + height: 12 * PrefDisplay.mobile_scale + x: (parent.width - width) / 2 + y: (parent.height - height) / 2 radius: 3 color: root.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor visible: root.checked |