1
0

qt: channels_list: add tooltip to New Channel btn

Adds tooltips to the "New Channel" button so users understand why it is
disabled and what it does when it is enabled.
This commit is contained in:
f321x
2025-12-15 14:18:57 +01:00
parent 81a288a1f9
commit 71bc9af511

View File

@@ -368,7 +368,11 @@ class ChannelsList(MyTreeView):
# and maybe add item "main_window.init_lightning_dialog()" when applicable
menu.setEnabled(self.wallet.has_lightning())
self.new_channel_button = EnterButton(_('New Channel'), self.main_window.new_channel_dialog)
self.new_channel_button.setEnabled(self.wallet.can_have_lightning())
if not self.wallet.can_have_lightning():
self.new_channel_button.setEnabled(False)
self.new_channel_button.setToolTip(_("Lightning is not available for this wallet."))
else:
self.new_channel_button.setToolTip(_("Open a channel to send payments over the Lightning network."))
toolbar.insertWidget(2, self.new_channel_button)
return toolbar