1
0

channels_list: remove anchor icon

Anchor outputs are not optional, so this icon does not add meaningful
information to the user. It is only marginally useful for debuging.
This commit is contained in:
ThomasV
2026-02-02 10:12:52 +01:00
parent b7e58f659a
commit 3979d7016e
2 changed files with 0 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -440,12 +440,6 @@ class ChanFeatNoOnchainBackup(ChannelFeature):
return read_QIcon("cloud_no")
class ChanFeatAnchors(ChannelFeature):
def tooltip(self) -> str:
return _("This channel uses anchor outputs.")
def icon(self) -> QIcon:
return read_QIcon("anchor")
class ChannelFeatureIcons:
@@ -467,8 +461,6 @@ class ChannelFeatureIcons:
feats.append(ChanFeatTrampoline())
if not chan.has_onchain_backup():
feats.append(ChanFeatNoOnchainBackup())
if chan.has_anchors():
feats.append(ChanFeatAnchors())
return ChannelFeatureIcons(feats)
def paint(self, painter: QPainter, rect: QRect) -> None: