(trivial) qt: disable 'swap' button if lightning disabled

This commit is contained in:
SomberNight 2020-06-19 04:15:37 +02:00
parent 561ecaa226
commit 12e2beadd9
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -279,6 +279,7 @@ class ChannelsList(MyTreeView):
h.addWidget(self.can_send_label) h.addWidget(self.can_send_label)
h.addStretch() h.addStretch()
self.swap_button = EnterButton(_('Swap'), self.swap_dialog) self.swap_button = EnterButton(_('Swap'), self.swap_dialog)
self.swap_button.setEnabled(self.parent.wallet.has_lightning())
self.new_channel_button = EnterButton(_('Open Channel'), self.new_channel_dialog) self.new_channel_button = EnterButton(_('Open Channel'), self.new_channel_dialog)
self.new_channel_button.setEnabled(self.parent.wallet.has_lightning()) self.new_channel_button.setEnabled(self.parent.wallet.has_lightning())
h.addWidget(self.new_channel_button) h.addWidget(self.new_channel_button)