electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit f4fe80dfd1ed2e1032796582676dcd6a370e4e05
parent cba49db1962c77143f84dc49a7153ffff1c99f2b
Author: ThomasV <thomasv@electrum.org>
Date:   Wed, 17 Feb 2021 16:44:43 +0100

kivy: show node alias in channels dialog. Rename the menu back to 'Channels'

Diffstat:
Melectrum/gui/kivy/main.kv | 2+-
Melectrum/gui/kivy/uix/dialogs/lightning_channels.py | 14+++++++-------
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/electrum/gui/kivy/main.kv b/electrum/gui/kivy/main.kv @@ -461,7 +461,7 @@ BoxLayout: text: _('Addresses') ActionOvrButton: name: 'lightning_channels_dialog' - text: _('Lightning') + text: _('Channels') ActionOvrButton: name: 'settings' text: _('Settings') diff --git a/electrum/gui/kivy/uix/dialogs/lightning_channels.py b/electrum/gui/kivy/uix/dialogs/lightning_channels.py @@ -126,8 +126,8 @@ Builder.load_string(r''' short_channel_id: '<channelId not set>' status: '' is_backup: False - local_balance: '' - remote_balance: '' + balances: '' + node_alias: '' _chan: None BoxLayout: size_hint: 0.7, None @@ -143,7 +143,7 @@ Builder.load_string(r''' CardLabel: font_size: '13sp' shorten: True - text: root.status + text: root.node_alias Widget BoxLayout: size_hint: 0.3, None @@ -152,12 +152,12 @@ Builder.load_string(r''' orientation: 'vertical' Widget CardLabel: - text: root.local_balance if not root.is_backup else '' + text: root.status font_size: '13sp' halign: 'right' Widget CardLabel: - text: root.remote_balance if not root.is_backup else '' + text: root.balances if not root.is_backup else '' font_size: '13sp' halign: 'right' Widget @@ -566,8 +566,7 @@ class LightningChannelsDialog(Factory.Popup): item.status = chan.get_state_for_GUI() item.short_channel_id = chan.short_id_for_GUI() l, r = self.format_fields(chan) - item.local_balance = _('Local') + ':' + l - item.remote_balance = _('Remote') + ': ' + r + item.balances = l + '/' + r self.update_can_send() def update(self): @@ -585,6 +584,7 @@ class LightningChannelsDialog(Factory.Popup): item.active = not i.is_closed() item.is_backup = i.is_backup() item._chan = i + item.node_alias = lnworker.get_node_alias(i.node_id) self.update_item(item) channel_cards.add_widget(item) self.update_can_send()