Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions electrum/gui/qml/components/SwapDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ElDialog {
Layout.preferredHeight: constants.iconSizeSmall
source: swaphelper.isReverse
? '../../icons/lightning.png'
: '../../icons/bitcoin.png'
: '../../icons/fact0rn.png'
}
}

Expand Down Expand Up @@ -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'
}
}
Expand Down
2 changes: 1 addition & 1 deletion electrum/gui/qml/components/controls/BalanceSummary.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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') + ':'
Expand Down
4 changes: 2 additions & 2 deletions electrum/gui/qml/components/controls/InvoiceDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion electrum/gui/qt/invoice_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions electrum/gui/qt/receive_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions electrum/gui/qt/swap_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file added fact0rn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.