Browse Source

Qt: Show pointer cursor for status bar buttons

3.3.3.1
Johann Bauer 6 years ago
parent
commit
bde655ae00
  1. 1
      electrum/gui/qt/main_window.py

1
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'''

Loading…
Cancel
Save