Browse Source

qt receive tab: fix refresh bug on macOS

related: #4777
master
SomberNight 5 years ago
parent
commit
2a4b516f16
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qt/request_list.py

2
electrum/gui/qt/request_list.py

@ -99,6 +99,8 @@ class RequestList(MyTreeView):
else:
self.parent.receive_payreq_e.setText(req.get('URI'))
self.parent.receive_address_e.setText(req['address'])
self.parent.receive_payreq_e.repaint() # macOS hack (similar to #4777)
self.parent.receive_address_e.repaint() # macOS hack (similar to #4777)
def clearSelection(self):
super().clearSelection()

Loading…
Cancel
Save