From 3be703ac0a613dd2ebaa51df977dfb5d79681055 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 6 Mar 2018 06:40:59 +0100 Subject: [PATCH] fix #4037 No history summary for wallet without any tx-history. --- gui/qt/history_list.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/qt/history_list.py b/gui/qt/history_list.py index 3140af001..41cb2c092 100644 --- a/gui/qt/history_list.py +++ b/gui/qt/history_list.py @@ -161,6 +161,9 @@ class HistoryList(MyTreeWidget, AcceptFileDragDrop): def show_summary(self): h = self.summary + if not h: + self.parent.show_message(_("Nothing to summarize.")) + return start_date = h.get('start_date') end_date = h.get('end_date') format_amount = lambda x: self.parent.format_amount(x.value) + ' ' + self.parent.base_unit()