Skip to content

Commit effc3b6

Browse files
committed
Fixes keyboard issues with Linux and dead keys
1 parent 7ae6af5 commit effc3b6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ZXBStudio/Program.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System;
55
using System.Diagnostics;
66
using System.Linq;
7+
using System.Runtime.InteropServices;
78

89
namespace ZXBasicStudio
910
{
@@ -97,6 +98,10 @@ public static AppBuilder BuildAvaloniaApp()
9798

9899
return AppBuilder.Configure<App>()
99100
.UsePlatformDetect()
101+
.With(new X11PlatformOptions
102+
{
103+
EnableIme = true,
104+
})
100105
.LogToTrace();
101106
}
102107
}

0 commit comments

Comments
 (0)