# HG changeset patch # User Laurent Bessard # Date 1351681564 -3600 # Node ID 3f5c41f3d47fca6e6536e800bb8a57346887e3a3 # Parent c0952932d74b311e57d148f0c1bd83a473948601 Fix bug when Drag'n Dropping located variables on Windows diff -r c0952932d74b -r 3f5c41f3d47f etherlab/ConfigEditor.py --- a/etherlab/ConfigEditor.py Wed Oct 31 11:54:26 2012 +0100 +++ b/etherlab/ConfigEditor.py Wed Oct 31 12:06:04 2012 +0100 @@ -255,6 +255,7 @@ dragSource = wx.DropSource(self.VariablesGrid) dragSource.SetData(data) dragSource.DoDragDrop() + return event.Skip()