controls/DebugVariablePanel/DebugVariablePanel.py
changeset 1770 449fd504a711
parent 1768 691083b5682a
child 1780 c52d1460cea8
equal deleted inserted replaced
1769:4665ba25a0ba 1770:449fd504a711
   107         Function called when mouse is dragged over Drop Target
   107         Function called when mouse is dragged over Drop Target
   108         @param x: X coordinate of mouse pointer
   108         @param x: X coordinate of mouse pointer
   109         @param y: Y coordinate of mouse pointer
   109         @param y: Y coordinate of mouse pointer
   110         @param d: Suggested default for return value
   110         @param d: Suggested default for return value
   111         """
   111         """
   112        # Signal Debug Variable Panel to refresh highlight giving mouse position
   112         # Signal Debug Variable Panel to refresh highlight giving mouse position
   113         self.ParentWindow.RefreshHighlight(x, y)
   113         self.ParentWindow.RefreshHighlight(x, y)
   114         return wx.TextDropTarget.OnDragOver(self, x, y, d)
   114         return wx.TextDropTarget.OnDragOver(self, x, y, d)
   115 
   115 
   116     def OnDropText(self, x, y, data):
   116     def OnDropText(self, x, y, data):
   117         """
   117         """