qt new_channel_dialog: trivial fix in on_clear()

This commit is contained in:
SomberNight 2020-06-25 22:17:15 +02:00
parent afbdacbe16
commit 4216a9164d
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -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)