diff options
| author | mmbyday <mmbyday@protonmail.com> | 2019-02-01 00:16:54 -0800 |
|---|---|---|
| committer | mmbyday <mmbyday@protonmail.com> | 2019-02-01 00:37:09 -0800 |
| commit | d76330d32af4ed0286b1e5e785673fc24ee42a41 (patch) | |
| tree | acc8b6ad7fd0186b07c65c5607f50aeded829e4b /pages | |
| parent | c7f3deb5cc5e68891154c14275fd5dfe6bdd0a71 (diff) | |
| download | monzero-gui-d76330d32af4ed0286b1e5e785673fc24ee42a41.tar.gz monzero-gui-d76330d32af4ed0286b1e5e785673fc24ee42a41.tar.xz monzero-gui-d76330d32af4ed0286b1e5e785673fc24ee42a41.zip | |
Merchant: fix checkbox
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/merchant/MerchantCheckbox.qml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/pages/merchant/MerchantCheckbox.qml b/pages/merchant/MerchantCheckbox.qml index 49ffbc7f..7b2abc6b 100644 --- a/pages/merchant/MerchantCheckbox.qml +++ b/pages/merchant/MerchantCheckbox.qml @@ -21,12 +21,8 @@ RowLayout { Image { id: imageChecked visible: root.checked - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter - source: "../../images/checkedBlackIcon.png" - opacity: 0.6 - width: 12 * scaleRatio - height: 8 * scaleRatio + anchors.centerIn: parent + source: "../../images/uncheckedIcon.png" } } |
