From aa64ebc0ef33964ed36c0156333c2b314c472567 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 1 Feb 2020 20:51:41 +0100 Subject: [PATCH] made the default text input style be desktopgl --- MLEM.Ui/UiControls.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLEM.Ui/UiControls.cs b/MLEM.Ui/UiControls.cs index c413532..763406f 100644 --- a/MLEM.Ui/UiControls.cs +++ b/MLEM.Ui/UiControls.cs @@ -36,7 +36,7 @@ namespace MLEM.Ui { public UiControls(UiSystem system, InputHandler inputHandler = null) { this.System = system; - this.Input = inputHandler ?? new InputHandler(system.Game); + this.Input = inputHandler ?? new InputHandler(system.Game, textInputStyle: new TextInputStyle.DesktopGl()); this.IsInputOurs = inputHandler == null; // enable all required gestures