diff --git a/mRemoteV1/UI/Window/ConnectionTreeWindow.cs b/mRemoteV1/UI/Window/ConnectionTreeWindow.cs index 8e958efc5..07083ddd0 100644 --- a/mRemoteV1/UI/Window/ConnectionTreeWindow.cs +++ b/mRemoteV1/UI/Window/ConnectionTreeWindow.cs @@ -45,6 +45,7 @@ namespace mRemoteNG.UI.Window }; FillImageList(); + SetDragAndDropProperties(); LinkModelToView(); SetEventHandlers(); } @@ -70,6 +71,12 @@ namespace mRemoteNG.UI.Window } } + private void SetDragAndDropProperties() + { + var dropSink = (SimpleDropSink)olvConnections.DropSink; + dropSink.FeedbackColor = Color.SteelBlue; + } + private void LinkModelToView() { olvNameColumn.AspectGetter = item => ((ConnectionInfo)item).Name;