diff --git a/electrum/gui/icons/nocloud.png b/electrum/gui/icons/cloud_no.png similarity index 100% rename from electrum/gui/icons/nocloud.png rename to electrum/gui/icons/cloud_no.png diff --git a/electrum/gui/icons/cloud_yes.png b/electrum/gui/icons/cloud_yes.png new file mode 100644 index 000000000..dd30292af Binary files /dev/null and b/electrum/gui/icons/cloud_yes.png differ diff --git a/electrum/gui/qml/components/controls/ChannelDelegate.qml b/electrum/gui/qml/components/controls/ChannelDelegate.qml index 4728a0865..bbeb8e797 100644 --- a/electrum/gui/qml/components/controls/ChannelDelegate.qml +++ b/electrum/gui/qml/components/controls/ChannelDelegate.qml @@ -38,7 +38,7 @@ ItemDelegate { id: walleticon source: model.is_backup ? model.is_imported - ? '../../../icons/nocloud.png' + ? '../../../icons/cloud_no.png' : '../../../icons/lightning_disconnected.png' : model.is_trampoline ? '../../../icons/kangaroo.png' diff --git a/electrum/gui/qt/channels_list.py b/electrum/gui/qt/channels_list.py index 18c9dadc3..351cdef76 100644 --- a/electrum/gui/qt/channels_list.py +++ b/electrum/gui/qt/channels_list.py @@ -443,7 +443,7 @@ class ChanFeatNoOnchainBackup(ChannelFeature): def tooltip(self) -> str: return _("This channel cannot be recovered from your seed. You must back it up manually.") def icon(self) -> QIcon: - return read_QIcon("nocloud") + return read_QIcon("cloud_no") class ChannelFeatureIcons: diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 608dfa7b4..42e20a89c 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -1761,7 +1761,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): grid.addWidget(WWLabel(_('Enabled')), cur_row, 1) else: label = IconLabel(text='Enabled, non-recoverable channels') - label.setIcon(read_QIcon('nocloud')) + label.setIcon(read_QIcon('cloud_no')) grid.addWidget(label, cur_row, 1) if self.wallet.db.get('seed_type') == 'segwit': msg = _("Your channels cannot be recovered from seed, because they were created with an old version of Electrum. "