mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
Duplicating a node now places it under the node that it was copied from, rather than the bottom of the list. (this was the previous behavior)
This commit is contained in:
@@ -527,9 +527,10 @@ namespace mRemoteNG.UI.Window
|
||||
|
||||
private void cMenTreeDuplicate_Click(object sender, EventArgs e)
|
||||
{
|
||||
SelectedNode.Clone();
|
||||
var newNode = SelectedNode.Clone();
|
||||
newNode.Parent.SetChildBelow(newNode, SelectedNode);
|
||||
Runtime.SaveConnectionsBG();
|
||||
olvConnections.RebuildAll(true);
|
||||
olvConnections.RefreshObject(SelectedNode);
|
||||
}
|
||||
|
||||
private void cMenTreeRename_Click(object sender, EventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user