aboutsummaryrefslogtreecommitdiff
path: root/components/CheckBox2.qml
diff options
context:
space:
mode:
authordsc <xmrdsc@protonmail.com>2019-04-25 21:09:23 +0200
committerdsc <xmrdsc@protonmail.com>2019-04-25 21:09:23 +0200
commit62285b01dc77ef14e4b5b9cc291e34162321ad89 (patch)
tree5ced9d312817ca03be17c242d1e2bd478b4fd1e5 /components/CheckBox2.qml
parente1c429110f5f2321ad0113a8097eab966d935dcd (diff)
downloadmonzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.gz
monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.tar.xz
monzero-gui-62285b01dc77ef14e4b5b9cc291e34162321ad89.zip
Remove scaleRatio
Diffstat (limited to 'components/CheckBox2.qml')
-rw-r--r--components/CheckBox2.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/CheckBox2.qml b/components/CheckBox2.qml
index 899f1f1e..08c86e7b 100644
--- a/components/CheckBox2.qml
+++ b/components/CheckBox2.qml
@@ -39,11 +39,11 @@ RowLayout {
id: checkBox
property alias text: label.text
property bool checked: false
- property int fontSize: 14 * scaleRatio
+ property int fontSize: 14
property alias fontColor: label.color
- property int textMargin: 8 * scaleRatio
+ property int textMargin: 8
signal clicked()
- height: 25 * scaleRatio
+ height: 25
function toggle(){
checkBox.checked = !checkBox.checked
@@ -75,13 +75,13 @@ RowLayout {
anchors.left: label.right
anchors.leftMargin: textMargin
color: "transparent"
- rotation: checkBox.checked ? 180 * scaleRatio : 0
+ rotation: checkBox.checked ? 180 : 0
MoneroEffects.ImageMask {
id: indicatorImage
anchors.centerIn: parent
- width: 12 * scaleRatio
- height: 8 * scaleRatio
+ width: 12
+ height: 8
image: "qrc:///images/whiteDropIndicator.png"
color: MoneroComponents.Style.defaultFontColor
opacity: MoneroComponents.Style.blackTheme ? 1 : 0.75