mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
7367d2535f
commit
8ab8a67f81
1 changed files with 7 additions and 6 deletions
|
@ -1,13 +1,14 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
import QtQuick 2.6
|
import QtQuick 2.6
|
||||||
import QtQuick.Controls 2.2
|
import QtQuick.Controls 2.2
|
||||||
|
import org.subsurfacedivelog.mobile 1.0
|
||||||
import org.kde.kirigami 2.2 as Kirigami
|
import org.kde.kirigami 2.2 as Kirigami
|
||||||
|
|
||||||
CheckBox {
|
CheckBox {
|
||||||
id: root
|
id: root
|
||||||
indicator: Rectangle {
|
indicator: Rectangle {
|
||||||
implicitWidth: 20
|
implicitWidth: 20 * PrefDisplay.mobile_scale
|
||||||
implicitHeight: 20
|
implicitHeight: 20 * PrefDisplay.mobile_scale
|
||||||
x: root.leftPadding
|
x: root.leftPadding
|
||||||
y: parent.height / 2 - height / 2
|
y: parent.height / 2 - height / 2
|
||||||
radius: 4
|
radius: 4
|
||||||
|
@ -16,10 +17,10 @@ CheckBox {
|
||||||
color: subsurfaceTheme.backgroundColor
|
color: subsurfaceTheme.backgroundColor
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: 12
|
width: 12 * PrefDisplay.mobile_scale
|
||||||
height: 12
|
height: 12 * PrefDisplay.mobile_scale
|
||||||
x: 4
|
x: (parent.width - width) / 2
|
||||||
y: 4
|
y: (parent.height - height) / 2
|
||||||
radius: 3
|
radius: 3
|
||||||
color: root.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor
|
color: root.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor
|
||||||
visible: root.checked
|
visible: root.checked
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue