diff --git a/electrum/gui/kivy/main.kv b/electrum/gui/kivy/main.kv index 695e3b1e3..330793af5 100644 --- a/electrum/gui/kivy/main.kv +++ b/electrum/gui/kivy/main.kv @@ -148,6 +148,9 @@ font_size: '6pt' name: '' data: '' + visible: True + opacity: 1 if self.visible else 0 + disabled: not self.visible text: self.data if self.data else _('Tap to show') touched: False padding: '10dp', '10dp' diff --git a/electrum/gui/kivy/uix/ui_screens/status.kv b/electrum/gui/kivy/uix/ui_screens/status.kv index a312dd8a2..59d8385eb 100644 --- a/electrum/gui/kivy/uix/ui_screens/status.kv +++ b/electrum/gui/kivy/uix/ui_screens/status.kv @@ -63,12 +63,13 @@ Popup: data: app.wallet.get_master_public_key() or 'None' name: _('Master Public Key') TopLabel: - text: _('This wallet is watching-only') if root.watching_only else _('Seed') + text: _('This wallet is watching-only') if root.watching_only else (_('Seed') if root.has_seed else _('No seed stored for wallet')) RefLabel: id: seed_label + visible: root.has_seed data: '' name: _('Seed') - on_touched: if not self.data and not root.watching_only: app.show_seed(seed_label) + on_touched: if not self.data and root.has_seed: app.show_seed(seed_label) BoxLayout: size_hint: 1, None