connection tree context menu now gets set. Why was this line missing? bad merge?

This commit is contained in:
David Sparer
2017-11-09 15:37:23 -06:00
parent af3527d6cf
commit a667502836

View File

@@ -36,7 +36,9 @@ namespace mRemoteNG.UI.Window
WindowType = WindowType.Tree;
DockPnl = panel;
InitializeComponent();
SetMenuEventHandlers();
_contextMenu = new ConnectionContextMenu(olvConnections);
olvConnections.ContextMenuStrip = _contextMenu;
SetMenuEventHandlers();
SetConnectionTreeEventHandlers();
Settings.Default.PropertyChanged += (sender, args) => SetConnectionTreeEventHandlers();
}