diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-27 21:45:16 +0200 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:04 +0100 |
| commit | 6e503cd0e2a18dda13aa8f79786efc6c6c68eee4 (patch) | |
| tree | acfa7c87c3c4e1db4afbba35b8df7aed65c18fe2 | |
| parent | 408878290e848f02f942d3d698d4d038a797d181 (diff) | |
| download | monzero-gui-6e503cd0e2a18dda13aa8f79786efc6c6c68eee4.tar.gz monzero-gui-6e503cd0e2a18dda13aa8f79786efc6c6c68eee4.tar.xz monzero-gui-6e503cd0e2a18dda13aa8f79786efc6c6c68eee4.zip | |
Replace violet checkbox mark with a black one
| -rwxr-xr-x | images/checkedBlackIcon.png | bin | 0 -> 15055 bytes | |||
| -rw-r--r-- | qml.qrc | 1 | ||||
| -rw-r--r-- | wizard/WizardDaemonSettings.qml | 2 | ||||
| -rw-r--r-- | wizard/WizardOptions.qml | 4 |
4 files changed, 4 insertions, 3 deletions
diff --git a/images/checkedBlackIcon.png b/images/checkedBlackIcon.png Binary files differnew file mode 100755 index 00000000..d73b70bf --- /dev/null +++ b/images/checkedBlackIcon.png @@ -204,5 +204,6 @@ <file>components/CheckBox2.qml</file> <file>js/TxUtils.js</file> <file>images/warning.png</file> + <file>images/checkedBlackIcon.png</file> </qresource> </RCC> diff --git a/wizard/WizardDaemonSettings.qml b/wizard/WizardDaemonSettings.qml index ac19aa87..69947f74 100644 --- a/wizard/WizardDaemonSettings.qml +++ b/wizard/WizardDaemonSettings.qml @@ -124,7 +124,7 @@ ColumnLayout { CheckBox { id: localNode text: qsTr("Start a node automatically in background (recommended)") + translationManager.emptyString - checkedIcon: "../images/checkedVioletIcon.png" + checkedIcon: "../images/checkedBlackIcon.png" background: "#FFFFFF" fontColor: "#4A4646" fontSize: 16 * scaleRatio diff --git a/wizard/WizardOptions.qml b/wizard/WizardOptions.qml index 3579f147..ef9a4d1c 100644 --- a/wizard/WizardOptions.qml +++ b/wizard/WizardOptions.qml @@ -248,7 +248,7 @@ ColumnLayout { background: "#FFFFFF" fontColor: "#4A4646" fontSize: 16 * scaleRatio - checkedIcon: "../images/checkedVioletIcon.png" + checkedIcon: "../images/checkedBlackIcon.png" uncheckedIcon: "../images/uncheckedIcon.png" checked: appWindow.persistentSettings.nettype == NetworkType.TESTNET; onClicked: { @@ -267,7 +267,7 @@ ColumnLayout { background: "#FFFFFF" fontColor: "#4A4646" fontSize: 16 * scaleRatio - checkedIcon: "../images/checkedVioletIcon.png" + checkedIcon: "../images/checkedBlackIcon.png" uncheckedIcon: "../images/uncheckedIcon.png" checked: appWindow.persistentSettings.nettype == NetworkType.STAGENET; onClicked: { |
