resolved issue when clicking in connection tree white space #422

This commit is contained in:
David Sparer
2017-03-02 08:55:10 -07:00
parent b1ec975612
commit 30df947365

View File

@@ -264,7 +264,7 @@ namespace mRemoteNG.UI.Controls
if (mouseEventArgs.Clicks > 1) return;
OLVColumn column;
var listItem = GetItemAt(mouseEventArgs.X, mouseEventArgs.Y, out column);
var clickedNode = listItem.RowObject as ConnectionInfo;
var clickedNode = listItem?.RowObject as ConnectionInfo;
if (clickedNode == null) return;
SingleClickHandler.Execute(clickedNode);
}