This commit is contained in:
ThomasV 2018-12-23 10:02:19 +01:00
parent dac5af8eca
commit 5469e3668e

View file

@ -89,6 +89,7 @@ class HistoryModel(QAbstractItemModel, PrintError):
self.view = None # type: HistoryList
self.transactions = OrderedDictWithIndex()
self.tx_status_cache = {} # type: Dict[str, Tuple[int, str]]
self.summary = None
def set_view(self, history_list: 'HistoryList'):
# FIXME HistoryModel and HistoryList mutually depend on each other.