diff --git a/electrum/gui/icons/sweep.png b/electrum/gui/icons/sweep.png new file mode 100644 index 000000000..faeb31417 Binary files /dev/null and b/electrum/gui/icons/sweep.png differ diff --git a/electrum/gui/qml/components/SweepDialog.qml b/electrum/gui/qml/components/SweepDialog.qml index 0e8c48d1e..c1d4b7655 100644 --- a/electrum/gui/qml/components/SweepDialog.qml +++ b/electrum/gui/qml/components/SweepDialog.qml @@ -10,7 +10,7 @@ ElDialog { id: root title: qsTr('Sweep private keys') - iconSource: Qt.resolvedUrl('../../icons/add.png') + iconSource: Qt.resolvedUrl('../../icons/sweep.png') property bool valid: false property string privateKeys diff --git a/electrum/gui/qml/components/WalletMainView.qml b/electrum/gui/qml/components/WalletMainView.qml index a360d6c6b..5aa727f75 100644 --- a/electrum/gui/qml/components/WalletMainView.qml +++ b/electrum/gui/qml/components/WalletMainView.qml @@ -208,7 +208,7 @@ Item { MenuItem { icon.color: action.enabled ? 'transparent' : Material.iconDisabledColor - icon.source: '../../icons/add.png' + icon.source: '../../icons/sweep.png' action: Action { text: qsTr('Sweep key') enabled: !Daemon.currentWallet.isWatchOnly // watchonly might be acceptable