Skip to content
This repository has been archived by the owner on Jan 1, 2020. It is now read-only.

Commit

Permalink
We need to use wx.CursorFromImage on Classic
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinD42 committed Mar 11, 2015
1 parent 623a9c8 commit 25bcbf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wx/lib/plot.py
Expand Up @@ -595,9 +595,9 @@ def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition,

# set curser as cross-hairs
self.canvas.SetCursor(wx.CROSS_CURSOR)
self.HandCursor = wx.Cursor(Hand.GetImage())
self.GrabHandCursor = wx.Cursor(GrabHand.GetImage())
self.MagCursor = wx.Cursor(MagPlus.GetImage())
self.HandCursor = wx.CursorFromImage(Hand.GetImage())
self.GrabHandCursor = wx.CursorFromImage(GrabHand.GetImage())
self.MagCursor = wx.CursorFromImage(MagPlus.GetImage())

# Things for printing
self._print_data = None
Expand Down

0 comments on commit 25bcbf1

Please sign in to comment.