Browse Source
qt new_channel_dialog: trivial fix in on_clear()
bip39-recovery
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
0 deletions
-
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) |
|
|
|