diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-02-06 16:06:20 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-02-06 16:06:20 -0600 |
| commit | 3caa1c6840beab571e2e1528f6db506ec90fb072 (patch) | |
| tree | fdd283bbfe27a540cfa2c1c202647239b45761f9 /pages | |
| parent | 64df6a027e54de8425e5f6cf890b1162e30670d8 (diff) | |
| parent | d76330d32af4ed0286b1e5e785673fc24ee42a41 (diff) | |
| download | monzero-gui-3caa1c6840beab571e2e1528f6db506ec90fb072.tar.gz monzero-gui-3caa1c6840beab571e2e1528f6db506ec90fb072.tar.xz monzero-gui-3caa1c6840beab571e2e1528f6db506ec90fb072.zip | |
Merge pull request #1923
d76330d Merchant: fix checkbox (mmbyday)
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" } } |
