wxMac apparently doesn't send EVT_SHOW, so just use wx.CallAfter instead

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42186 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-10-21 01:21:21 +00:00
parent 84752aa52a
commit 70e8e9b8f2

View File

@ -400,20 +400,14 @@ class Setup(wx.Dialog):
flag = wx.LEFT|wx.RIGHT, border=6)
sizer.Add(bsizer, 0, flag=wx.ALIGN_RIGHT|wx.ALL, border=6)
self.Bind(wx.EVT_SHOW, self.OnShow)
self.Bind(wx.EVT_CLOSE, self.OnClose)
self.Bind(wx.EVT_BUTTON, self.OnButton)
self.customcolours = [None] * 16
self.SetSizerAndFit(sizer)
def OnShow(self, evt):
if self.IsShown():
self.UpdateControls()
evt.Skip()
wx.CallAfter(self.UpdateControls)
def OnClose(self, evt):
self.Hide()