1
0

kivy: receive to ln invoice should be disabled if lightning is disabled

This commit is contained in:
SomberNight
2019-09-16 16:19:19 +02:00
parent ff9cc4d292
commit 49a2dbb021
2 changed files with 3 additions and 2 deletions

View File

@@ -321,7 +321,6 @@ class ElectrumWindow(App):
App.__init__(self)#, **kwargs)
title = _('Electrum App')
self.electrum_config = config = kwargs.get('config', None) # type: SimpleConfig
self.language = config.get('language', 'en')
self.network = network = kwargs.get('network', None) # type: Network
@@ -341,6 +340,8 @@ class ElectrumWindow(App):
self.daemon = self.gui_object.daemon
self.fx = self.daemon.fx
self.is_lightning_enabled = bool(config.get('lightning'))
self.use_rbf = config.get('use_rbf', True)
self.use_unconfirmed = not config.get('confirmed_only', False)

View File

@@ -91,7 +91,7 @@ ReceiveScreen:
id: address_label
text: _('Lightning') if root.is_lightning else (s.address if s.address else _('Bitcoin Address'))
shorten: True
on_release: root.is_lightning = not root.is_lightning
on_release: root.is_lightning = not root.is_lightning if app.is_lightning_enabled else False
CardSeparator:
opacity: message_selection.opacity
color: blue_bottom.foreground_color