Added CTRL+R to refresh your wallet
authorMaran <maran.hidskes@gmail.com>
Fri, 31 May 2013 15:12:51 +0000 (17:12 +0200)
committerMaran <maran.hidskes@gmail.com>
Sat, 1 Jun 2013 10:00:19 +0000 (12:00 +0200)
gui/gui_classic.py

index 7b64edf..9e2fc1e 100644 (file)
@@ -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() ))