Selection tool / copy paste for editor

This commit is contained in:
Curtis Shmyr
2012-06-30 22:31:32 -06:00
committed by Chris Forbes
parent c2029e9d5c
commit 61c3932340
4 changed files with 172 additions and 44 deletions

View File

@@ -545,5 +545,10 @@ namespace OpenRA.Editor
var player = actorOwnerChooser.SelectedItem as PlayerReference;
surface1.NewActorOwner = player.Name;
}
private void copySelectionToolStripMenuItem_Click(object sender, EventArgs e)
{
surface1.CopySelection();
}
}
}