Browse Source

QAbstractItemModel: Release Notes and Address List fiat bug fix

master
Janus 7 years ago committed by SomberNight
parent
commit
d2ddb255ef
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 11
      RELEASE-NOTES
  2. 1
      electrum/gui/qt/main_window.py

11
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.

1
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)

Loading…
Cancel
Save