From 866aeab76b1e84e4dbb19a7ad9c50bc513d835b2 Mon Sep 17 00:00:00 2001 From: David Sparer Date: Fri, 9 Sep 2016 08:25:56 -0600 Subject: [PATCH] Changed the drag-drop highlight color --- mRemoteV1/UI/Window/ConnectionTreeWindow.cs | 7 +++++++ 1 file changed, 7 insertions(+) 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;