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 <longshuang@msn.cn>
This commit is contained in:
leo 2024-11-21 19:23:59 +08:00
parent f0d8285416
commit e6e1e4e82e
No known key found for this signature in database

View file

@ -13,10 +13,7 @@ namespace SourceGit.Native
{ {
public void SetupApp(AppBuilder builder) public void SetupApp(AppBuilder builder)
{ {
builder.With(new X11PlatformOptions() builder.With(new X11PlatformOptions());
{
EnableIme = true,
});
} }
public string FindGitExecutable() public string FindGitExecutable()