Added CTRL+R to refresh your wallet

This commit is contained in:
Maran 2013-05-31 17:12:51 +02:00
parent 9945e0926c
commit 7f7441eb7f
1 changed files with 1 additions and 0 deletions

View 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() ))