git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44004
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
self.log.write("Beginning Drag..." + "\n")
event.Allow()
- event.Skip()
def OnBeginRDrag(self, event):
self.log.write("Beginning Right Drag..." + "\n")
event.Allow()
- event.Skip()
def OnEndDrag(self, event):
Recent Changes for wxPython
=====================================================================
+2.8.0.2
+-------
+*
+
+wxGTK: Fix for controls on a toolbar being the full height of the
+toolbar instead of their natural height.
+
+wx.lib.customtreectrl patches from Andrea Gavana.
+
+
+
+
2.8.0.1
-------
current = self.GetItemParent(current)
if current:
next = self.GetNextSibling(current)
- if not self.IsEnabled(next):
+ if not next or not self.IsEnabled(next):
next = None
else:
underMouse = thisItem
underMouseChanged = underMouse != self._underMouse
- if underMouse and (flags & TREE_HITTEST_ONITEMBUTTON) and not event.LeftIsDown() and \
+ if underMouse and (flags & TREE_HITTEST_ONITEM) and not event.LeftIsDown() and \
not self._isDragging and (not self._renameTimer or not self._renameTimer.IsRunning()):
underMouse = underMouse
else: