From bd09a44ab91b4f3d35f5226a4d818580f8cf8cef Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 13 May 2024 15:42:24 +0800 Subject: [PATCH] fix: IME not work on Wayland (#125) --- src/Native/Linux.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Native/Linux.cs b/src/Native/Linux.cs index b34943a4..5474c5c5 100644 --- a/src/Native/Linux.cs +++ b/src/Native/Linux.cs @@ -43,6 +43,11 @@ namespace SourceGit.Native DefaultFamilyName = "fonts:SourceGit#JetBrains Mono", }); + builder.With(new X11PlatformOptions() + { + EnableIme = true, + }); + // Free-desktop file picker has an extra black background panel. builder.UseManagedSystemDialogs(); }