From 7f7441eb7f340059a9e61db1cc0967c7eef9e7dc Mon Sep 17 00:00:00 2001 From: Maran Date: Fri, 31 May 2013 17:12:51 +0200 Subject: [PATCH] Added CTRL+R to refresh your wallet --- gui/gui_classic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/gui_classic.py b/gui/gui_classic.py index 7b64edf5c..9e2fc1ead 100644 --- a/gui/gui_classic.py +++ b/gui/gui_classic.py @@ -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() ))