Browse Source
qt history tab: fix shortcut in HistoryModel.refresh()
patch-4
SomberNight
4 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/qt/history_list.py
|
|
@ -269,7 +269,7 @@ class HistoryModel(CustomModel, Logger): |
|
|
|
self.parent.fx, |
|
|
|
onchain_domain=self.get_domain(), |
|
|
|
include_lightning=self.should_include_lightning_payments()) |
|
|
|
if transactions == list(self.transactions.values()): |
|
|
|
if transactions == self.transactions: |
|
|
|
return |
|
|
|
old_length = self._root.childCount() |
|
|
|
if old_length != 0: |
|
|
|