dabo Commit Revision 2955 Date: 2007-03-22 17:10:04 -0700 (Thu, 22 Mar 2007) Author: Paul Trac: http://svn.dabodev.com/trac/dabo/changeset/2955
Changed: U trunk/dabo/ui/uiwx/winProblems/frame_position_reset.py Log: On Mac, LEFT_UP is never received, so changed it to bind to LEFT_DOWN, which does seem to work. This is a Gtk thing, btw. Diff: Modified: trunk/dabo/ui/uiwx/winProblems/frame_position_reset.py =================================================================== --- trunk/dabo/ui/uiwx/winProblems/frame_position_reset.py 2007-03-23 00:06:08 UTC (rev 2954) +++ trunk/dabo/ui/uiwx/winProblems/frame_position_reset.py 2007-03-23 00:10:04 UTC (rev 2955) @@ -14,7 +14,7 @@ app = wx.App() frm = wx.Frame(None) -frm.Bind(wx.EVT_LEFT_UP, onClick) +frm.Bind(wx.EVT_LEFT_DOWN, onClick) frm.Show() app.MainLoop() _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
