Browse Source
Merge pull request #4727 from SomberNight/refresh_gui_f5
qt: refresh gui with "F5"
3.3.3.1
ThomasV
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
electrum/gui/qt/main_window.py
|
|
@ -179,6 +179,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): |
|
|
|
QShortcut(QKeySequence("Ctrl+W"), self, self.close) |
|
|
|
QShortcut(QKeySequence("Ctrl+Q"), self, self.close) |
|
|
|
QShortcut(QKeySequence("Ctrl+R"), self, self.update_wallet) |
|
|
|
QShortcut(QKeySequence("F5"), self, self.update_wallet) |
|
|
|
QShortcut(QKeySequence("Ctrl+PgUp"), self, lambda: wrtabs.setCurrentIndex((wrtabs.currentIndex() - 1)%wrtabs.count())) |
|
|
|
QShortcut(QKeySequence("Ctrl+PgDown"), self, lambda: wrtabs.setCurrentIndex((wrtabs.currentIndex() + 1)%wrtabs.count())) |
|
|
|
|
|
|
|