diff --git a/Demos.Android/Demos.Android.csproj b/Demos.Android/Demos.Android.csproj index 6344ecd..cbf2a26 100644 --- a/Demos.Android/Demos.Android.csproj +++ b/Demos.Android/Demos.Android.csproj @@ -72,7 +72,7 @@ - + diff --git a/MLEM.Ui/Elements/TextField.cs b/MLEM.Ui/Elements/TextField.cs index 43bebab..4a0fd57 100644 --- a/MLEM.Ui/Elements/TextField.cs +++ b/MLEM.Ui/Elements/TextField.cs @@ -210,12 +210,12 @@ namespace MLEM.Ui.Elements { this.CaretPos = this.text.Length; } else if (this.Input.IsModifierKeyDown(ModifierKey.Control)) { if (this.Input.IsKeyPressed(Keys.V)) { - var clip = ClipboardService.GetText(); + var clip = Clipboard.GetText(); if (clip != null) this.InsertText(clip); } else if (this.Input.IsKeyPressed(Keys.C)) { // until there is text selection, just copy the whole content - ClipboardService.SetText(this.Text); + Clipboard.SetText(this.Text); } } diff --git a/MLEM.Ui/MLEM.Ui.csproj b/MLEM.Ui/MLEM.Ui.csproj index 75618e7..0bdf47e 100644 --- a/MLEM.Ui/MLEM.Ui.csproj +++ b/MLEM.Ui/MLEM.Ui.csproj @@ -18,7 +18,7 @@ all - +