Skip to content

Commit 0267df8

Browse files
committed
Fixed compatibility with wx3.0
1 parent 74f0d2f commit 0267df8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

wxmpl.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,9 @@ def __init__(self, parent, id, size=(6.0, 3.70), dpi=96, cursor=True,
11241124
# find the toplevel parent window and register an activation event
11251125
# handler that is keyed to the id of this PlotPanel
11261126
topwin = toplevel_parent_of_window(self)
1127-
topwin.Connect(-1, self.GetId(), wx.wxEVT_ACTIVATE, self.OnActivate)
1127+
#See: http://matplotlib.1069221.n5.nabble.com/wxMPL-patch-td34955.html
1128+
#topwin.Connect(-1, self.GetId(), wx.wxEVT_ACTIVATE, self.OnActivate)
1129+
topwin.Connect(self.GetId(), wx.ID_ANY, wx.wxEVT_ACTIVATE, self.OnActivate)
11281130

11291131
wx.EVT_ERASE_BACKGROUND(self, self.OnEraseBackground)
11301132
wx.EVT_WINDOW_DESTROY(self, self.OnDestroy)

0 commit comments

Comments
 (0)