qt receive tab: fix refresh bug on macOS

related: #4777
This commit is contained in:
SomberNight 2020-05-14 20:16:01 +02:00
parent 587f8df8ad
commit 2a4b516f16
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

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