commit bde655ae00d6728622d86d06d1883aaed8aa6123
parent 549d71fb0bcbc43c16c3703f5c576f79d39e9b84
Author: Johann Bauer <bauerj@bauerj.eu>
Date: Tue, 1 Jan 2019 20:39:27 +0100
Qt: Show pointer cursor for status bar buttons
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py
@@ -86,6 +86,7 @@ class StatusBarButton(QPushButton):
self.clicked.connect(self.onPress)
self.func = func
self.setIconSize(QSize(25,25))
+ self.setCursor(QCursor(Qt.PointingHandCursor))
def onPress(self, checked=False):
'''Drops the unwanted PyQt5 "checked" argument'''