fix: IME not work on Wayland (#125)

This commit is contained in:
leo 2024-05-13 15:42:24 +08:00
parent 6e3ae6b7b4
commit bd09a44ab9

View file

@ -43,6 +43,11 @@ namespace SourceGit.Native
DefaultFamilyName = "fonts:SourceGit#JetBrains Mono", DefaultFamilyName = "fonts:SourceGit#JetBrains Mono",
}); });
builder.With(new X11PlatformOptions()
{
EnableIme = true,
});
// Free-desktop file picker has an extra black background panel. // Free-desktop file picker has an extra black background panel.
builder.UseManagedSystemDialogs(); builder.UseManagedSystemDialogs();
} }