icons: add "cloud_yes.png", and rename existing "nocloud"
This commit is contained in:
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
BIN
electrum/gui/icons/cloud_yes.png
Normal file
BIN
electrum/gui/icons/cloud_yes.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
@@ -38,7 +38,7 @@ ItemDelegate {
|
|||||||
id: walleticon
|
id: walleticon
|
||||||
source: model.is_backup
|
source: model.is_backup
|
||||||
? model.is_imported
|
? model.is_imported
|
||||||
? '../../../icons/nocloud.png'
|
? '../../../icons/cloud_no.png'
|
||||||
: '../../../icons/lightning_disconnected.png'
|
: '../../../icons/lightning_disconnected.png'
|
||||||
: model.is_trampoline
|
: model.is_trampoline
|
||||||
? '../../../icons/kangaroo.png'
|
? '../../../icons/kangaroo.png'
|
||||||
|
|||||||
@@ -443,7 +443,7 @@ class ChanFeatNoOnchainBackup(ChannelFeature):
|
|||||||
def tooltip(self) -> str:
|
def tooltip(self) -> str:
|
||||||
return _("This channel cannot be recovered from your seed. You must back it up manually.")
|
return _("This channel cannot be recovered from your seed. You must back it up manually.")
|
||||||
def icon(self) -> QIcon:
|
def icon(self) -> QIcon:
|
||||||
return read_QIcon("nocloud")
|
return read_QIcon("cloud_no")
|
||||||
|
|
||||||
|
|
||||||
class ChannelFeatureIcons:
|
class ChannelFeatureIcons:
|
||||||
|
|||||||
@@ -1761,7 +1761,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener):
|
|||||||
grid.addWidget(WWLabel(_('Enabled')), cur_row, 1)
|
grid.addWidget(WWLabel(_('Enabled')), cur_row, 1)
|
||||||
else:
|
else:
|
||||||
label = IconLabel(text='Enabled, non-recoverable channels')
|
label = IconLabel(text='Enabled, non-recoverable channels')
|
||||||
label.setIcon(read_QIcon('nocloud'))
|
label.setIcon(read_QIcon('cloud_no'))
|
||||||
grid.addWidget(label, cur_row, 1)
|
grid.addWidget(label, cur_row, 1)
|
||||||
if self.wallet.db.get('seed_type') == 'segwit':
|
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. "
|
msg = _("Your channels cannot be recovered from seed, because they were created with an old version of Electrum. "
|
||||||
|
|||||||
Reference in New Issue
Block a user