tqt new_channel_dialog: trivial fix in on_clear() - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 4216a9164d0eb30e58bfef4e0c6039dd486e0263 DIR parent afbdacbe16b236bc9c4e8a3a300578533daa6e20 HTML Author: SomberNight <somber.night@protonmail.com> Date: Thu, 25 Jun 2020 22:17:15 +0200 qt new_channel_dialog: trivial fix in on_clear() Diffstat: M electrum/gui/qt/channels_list.py | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) --- DIR diff --git a/electrum/gui/qt/channels_list.py b/electrum/gui/qt/channels_list.py t@@ -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)