tAdded CTRL+R to refresh your wallet - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 7f7441eb7f340059a9e61db1cc0967c7eef9e7dc DIR parent 9945e0926c88b9a12448e7e8bad240c62c0a5d64 HTML Author: Maran <maran.hidskes@gmail.com> Date: Fri, 31 May 2013 17:12:51 +0200 Added CTRL+R to refresh your wallet Diffstat: M gui/gui_classic.py | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) --- DIR diff --git a/gui/gui_classic.py b/gui/gui_classic.py t@@ -281,6 +281,7 @@ class ElectrumWindow(QMainWindow): self.init_menubar() QShortcut(QKeySequence("Ctrl+W"), self, self.close) + QShortcut(QKeySequence("Ctrl+R"), self, self.update_wallet) QShortcut(QKeySequence("Ctrl+Q"), self, self.close) QShortcut(QKeySequence("Ctrl+PgUp"), self, lambda: tabs.setCurrentIndex( (tabs.currentIndex() - 1 )%tabs.count() )) QShortcut(QKeySequence("Ctrl+PgDown"), self, lambda: tabs.setCurrentIndex( (tabs.currentIndex() + 1 )%tabs.count() ))