Skip to content

Commit e6e1e4e

Browse files
committed
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 <[email protected]>
1 parent f0d8285 commit e6e1e4e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Native/Linux.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ internal class Linux : OS.IBackend
1313
{
1414
public void SetupApp(AppBuilder builder)
1515
{
16-
builder.With(new X11PlatformOptions()
17-
{
18-
EnableIme = true,
19-
});
16+
builder.With(new X11PlatformOptions());
2017
}
2118

2219
public string FindGitExecutable()

0 commit comments

Comments
 (0)