mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
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:
parent
f0d8285416
commit
e6e1e4e82e
1 changed files with 1 additions and 4 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue