From d2ddb255eff8590e3e1d504612666327bb2fa3f7 Mon Sep 17 00:00:00 2001 From: Janus Date: Fri, 7 Dec 2018 15:12:04 +0100 Subject: [PATCH] QAbstractItemModel: Release Notes and Address List fiat bug fix --- RELEASE-NOTES | 11 +++++++++++ electrum/gui/qt/main_window.py | 1 + 2 files changed, 12 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index bf831f913..932711f9b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -23,6 +23,17 @@ - Trezor: refactoring and compat with python-trezor 0.11 - Digital BitBox: support firmware v5.0.0 * fix bitcoin URI handling when app already running (#4796) + * Qt listing fixes: + - Selection by arrow keys disabled while editing e.g. label + - Enter key on unedited value does not pop up context menu + - Contacts: + - Prevent editing of OpenAlias names + - Receive: + - Icon for status of payment requests + - Disable editing of 'Description' in list, interaction + between labels and memo of invoice confusing + - Addresses: + - Fiat prices would show "No Data" incorrectly upon start * Several other minor bugfixes and usability improvements. diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 2037ddc6b..afb6c67de 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -247,6 +247,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): # History tab needs updating if it used spot if self.fx.history_used_spot: self.history_model.refresh('fx_quotes') + self.address_list.update() def toggle_tab(self, tab): show = not self.config.get('show_{}_tab'.format(tab.tab_name), False)