electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 9bb44e4db3872fbc8b9739df1c21277af0896040
parent a0e9046c2cc6fae0e6f1189f1873a87cf24c7477
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 17 May 2015 09:55:41 +0200

change mouse cursor over qr code

Diffstat:
Mgui/qt/main_window.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -619,6 +619,8 @@ class ElectrumWindow(QMainWindow): self.receive_qr = QRCodeWidget(fixedSize=200) self.receive_qr.mouseReleaseEvent = lambda x: self.toggle_qr_window() + self.receive_qr.enterEvent = lambda x: self.app.setOverrideCursor(QCursor(Qt.PointingHandCursor)) + self.receive_qr.leaveEvent = lambda x: self.app.setOverrideCursor(QCursor(Qt.ArrowCursor)) self.receive_buttons = buttons = QHBoxLayout() buttons.addStretch(1)