Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eac15d2

Browse files
committed
fix cursor mapping in backend_qt4
svn path=/trunk/matplotlib/; revision=5006
1 parent 1a2d727 commit eac15d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/backends/backend_qt4.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def fn_name(): return sys._getframe(1).f_code.co_name
2121
DEBUG = False
2222

2323
cursord = {
24-
cursors.MOVE : QtCore.Qt.PointingHandCursor,
25-
cursors.HAND : QtCore.Qt.WaitCursor,
24+
cursors.MOVE : QtCore.Qt.SizeAllCursor,
25+
cursors.HAND : QtCore.Qt.PointingHandCursor,
2626
cursors.POINTER : QtCore.Qt.ArrowCursor,
2727
cursors.SELECT_REGION : QtCore.Qt.CrossCursor,
2828
}

0 commit comments

Comments
 (0)