Skip to content

Commit

Permalink
qt receive tab: fix refresh bug on macOS
Browse files Browse the repository at this point in the history
related: spesmilo#4777
  • Loading branch information
SomberNight authored and sidhujag committed May 17, 2020
1 parent be02084 commit 443a1c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions electrumsys/gui/qt/request_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ def item_changed(self, idx: Optional[QModelIndex]):
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()
Expand Down

0 comments on commit 443a1c2

Please sign in to comment.