Make ctrl+x cut to clipboard

This commit is contained in:
Kevin Azzam
2015-10-10 13:49:23 +02:00
parent fdf993ddda
commit 96c0c2dec6
6 changed files with 31 additions and 17 deletions

View File

@@ -267,5 +267,10 @@ namespace OpenRA
{
return Device.GetClipboardText();
}
public bool SetClipboardText(string text)
{
return Device.SetClipboardText(text);
}
}
}