# HG changeset patch # User Laurent Bessard # Date 1351681544 -3600 # Node ID 8b24e9312f1836a98ae17b3a6c720c92dcd5f823 # Parent 8737f155449464f304b3ceea27e7eb6b36cc3b90 Fix bug when Drag'n Dropping located variables on Windows diff -r 8737f1554494 -r 8b24e9312f18 c_ext/CFileEditor.py --- a/c_ext/CFileEditor.py Wed Oct 31 12:04:40 2012 +0100 +++ b/c_ext/CFileEditor.py Wed Oct 31 12:05:44 2012 +0100 @@ -654,6 +654,7 @@ dragSource = wx.DropSource(self.VariablesGrid) dragSource.SetData(data) dragSource.DoDragDrop() + return event.Skip()