Files
wxWidgets/wxPython
Robin Dunn ca8071ca9f OGL patch from Shane Holloway:
Two simple problems found in the new python ogl code.  First is
    the patch for _canvas.py.  Essentially:

        dx = abs(dc.LogicalToDeviceX(x - self._firstDragX))
        dy = abs(dc.LogicalToDeviceY(y - self._firstDragY))

    was incorrect because (x,y) and (self._firstDragX,
    self._firstDragY) are both already in Logical coordinates.
    Therefore the difference between the two is also in logical
    coordinates, and the conversion call is an error.  This bug
    surfaces when you have OGL on a scrollwin, and you are far from
    the origin of the canvas.

    The second change in _composit.py basically removes the assumption
    that the child is in both self._children and self._divisions.
    Causes many problems when it's not.  ;)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-11-10 18:14:45 +00:00
..
2004-10-11 18:44:09 +00:00
2004-11-04 21:54:08 +00:00
2004-11-10 18:14:45 +00:00
2004-08-27 23:12:24 +00:00
2004-10-11 22:14:31 +00:00
2004-11-10 00:53:10 +00:00
2004-11-10 18:14:45 +00:00
2004-11-05 18:38:53 +00:00
2004-09-09 20:37:36 +00:00
2004-07-06 21:12:52 +00:00
2004-10-10 00:48:34 +00:00
2004-11-09 03:41:31 +00:00
2004-10-19 21:00:30 +00:00