Browse Source

qt new_channel_dialog: trivial fix in on_clear()

bip39-recovery
SomberNight 5 years ago
parent
commit
4216a9164d
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 1
      electrum/gui/qt/channels_list.py

1
electrum/gui/qt/channels_list.py

@ -341,6 +341,7 @@ class ChannelsList(MyTreeView):
clear_button = QPushButton(d, text=_('Clear'))
def on_clear():
amount_e.setText('')
amount_e.setFrozen(False)
remote_nodeid.setText('')
max_button.setChecked(False)
clear_button.clicked.connect(on_clear)

Loading…
Cancel
Save