Browse Source

fix #363: Drag/Drop to watch pad removes selection from editor

pull/343/merge
Siegfried Pammer 12 years ago
parent
commit
468642d80f
  1. 5
      src/AddIns/Debugger/Debugger.AddIn/Pads/WatchPad.cs

5
src/AddIns/Debugger/Debugger.AddIn/Pads/WatchPad.cs

@ -166,6 +166,11 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads @@ -166,6 +166,11 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
pad.AddWatch(watchValue);
}
public override DragDropEffects GetDropEffect(DragEventArgs e, int index)
{
return DragDropEffects.Copy;
}
}
static class WpfExtensions

Loading…
Cancel
Save