From e6e1e4e82ebd6fd883612a71c2000bbe39db181d Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 21 Nov 2024 19:23:59 +0800 Subject: [PATCH] fix: can not type characters with accent (#716) Leaves the `X11PlatformOptions.EnableIme` unsetted, since Avalonia will auto enable it when `LANG` contains `zh`/`ja`/`vi`/`ko` Signed-off-by: leo --- src/Native/Linux.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Native/Linux.cs b/src/Native/Linux.cs index 55b7b43b..76711bf2 100644 --- a/src/Native/Linux.cs +++ b/src/Native/Linux.cs @@ -13,10 +13,7 @@ namespace SourceGit.Native { public void SetupApp(AppBuilder builder) { - builder.With(new X11PlatformOptions() - { - EnableIme = true, - }); + builder.With(new X11PlatformOptions()); } public string FindGitExecutable()