diff --git a/electrum/gui/qml/components/SwapDialog.qml b/electrum/gui/qml/components/SwapDialog.qml index 30a3fd46e..252dcfaea 100644 --- a/electrum/gui/qml/components/SwapDialog.qml +++ b/electrum/gui/qml/components/SwapDialog.qml @@ -63,7 +63,7 @@ ElDialog { Layout.preferredHeight: constants.iconSizeSmall source: swaphelper.isReverse ? '../../icons/lightning.png' - : '../../icons/bitcoin.png' + : '../../icons/fact0rn.png' } } @@ -94,7 +94,7 @@ ElDialog { Layout.preferredWidth: constants.iconSizeSmall Layout.preferredHeight: constants.iconSizeSmall source: swaphelper.isReverse - ? '../../icons/bitcoin.png' + ? '../../icons/fact0rn.png' : '../../icons/lightning.png' } } diff --git a/electrum/gui/qml/components/controls/BalanceSummary.qml b/electrum/gui/qml/components/controls/BalanceSummary.qml index 103159405..496cd546e 100644 --- a/electrum/gui/qml/components/controls/BalanceSummary.qml +++ b/electrum/gui/qml/components/controls/BalanceSummary.qml @@ -103,7 +103,7 @@ Item { Image { Layout.preferredWidth: constants.iconSizeSmall Layout.preferredHeight: constants.iconSizeSmall - source: '../../../icons/bitcoin.png' + source: '../../../icons/fact0rn.png' } Label { text: qsTr('On-chain') + ':' diff --git a/electrum/gui/qml/components/controls/InvoiceDelegate.qml b/electrum/gui/qml/components/controls/InvoiceDelegate.qml index bc053b07b..5d2b66ef8 100644 --- a/electrum/gui/qml/components/controls/InvoiceDelegate.qml +++ b/electrum/gui/qml/components/controls/InvoiceDelegate.qml @@ -41,12 +41,12 @@ ItemDelegate { Layout.preferredHeight: constants.iconSizeLarge source: model.is_lightning ? "../../../icons/lightning.png" - : "../../../icons/bitcoin.png" + : "../../../icons/fact0rn.png" Image { visible: model.onchain_fallback z: -1 - source: "../../../icons/bitcoin.png" + source: "../../../icons/fact0rn.png" anchors { right: parent.right bottom: parent.bottom diff --git a/electrum/gui/qt/invoice_list.py b/electrum/gui/qt/invoice_list.py index 946d92ef2..1ff62c726 100644 --- a/electrum/gui/qt/invoice_list.py +++ b/electrum/gui/qt/invoice_list.py @@ -114,7 +114,7 @@ def update(self): if item.is_lightning(): icon_name = 'lightning.png' else: - icon_name = 'bitcoin.png' + icon_name = 'fact0rn.png' if item.bip70: icon_name = 'seal.png' status = self.wallet.get_invoice_status(item) diff --git a/electrum/gui/qt/receive_tab.py b/electrum/gui/qt/receive_tab.py index 01c048952..56367b9d3 100644 --- a/electrum/gui/qt/receive_tab.py +++ b/electrum/gui/qt/receive_tab.py @@ -207,11 +207,11 @@ def on_toggle_bolt11_fallback(self): def update_view_button(self): i = self.config.GUI_QT_RECEIVE_TABS_INDEX if i == 0: - icon, text = read_QIcon("bitcoin.png"), _('Address') + icon, text = read_QIcon("fact0rn.png"), _('Address') elif i == 1: - icon, text = read_QIcon("bitcoin.png"), _('Address') + icon, text = read_QIcon("fact0rn.png"), _('Address') elif i == 2: - icon, text = read_QIcon("bitcoin.png"), _('Address') + icon, text = read_QIcon("fact0rn.png"), _('Address') self.toggle_view_button.setText(text) self.toggle_view_button.setIcon(icon) diff --git a/electrum/gui/qt/swap_dialog.py b/electrum/gui/qt/swap_dialog.py index 1d5ef7e16..b337f6b8e 100644 --- a/electrum/gui/qt/swap_dialog.py +++ b/electrum/gui/qt/swap_dialog.py @@ -219,9 +219,9 @@ def on_recv_edited(self): def update(self): from .util import IconLabel sm = self.swap_manager - send_icon = read_QIcon("lightning.png" if self.is_reverse else "bitcoin.png") + send_icon = read_QIcon("lightning.png" if self.is_reverse else "fact0rn.png") self.send_label.setIcon(send_icon) - recv_icon = read_QIcon("lightning.png" if not self.is_reverse else "bitcoin.png") + recv_icon = read_QIcon("lightning.png" if not self.is_reverse else "fact0rn.png") self.recv_label.setIcon(recv_icon) self.description_label.setText(self.get_description()) self.description_label.repaint() # macOS hack for #6269 diff --git a/fact0rn.png b/fact0rn.png new file mode 100644 index 000000000..60a2c92fb Binary files /dev/null and b/fact0rn.png differ