Vlad
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
src/Linux/Avalonia.LinuxFramebuffer/Input/LibInput/LibInputBackend.cs
|
|
|
@ -19,7 +19,10 @@ namespace Avalonia.LinuxFramebuffer.Input.LibInput |
|
|
|
public LibInputBackend() |
|
|
|
{ |
|
|
|
var ctx = libinput_path_create_context(); |
|
|
|
new Thread(() => InputThread(ctx)).Start(); |
|
|
|
new Thread(() => InputThread(ctx)) |
|
|
|
{ |
|
|
|
IsBackground = true |
|
|
|
}.Start(); |
|
|
|
} |
|
|
|
|
|
|
|
private unsafe void InputThread(IntPtr ctx) |
|
|
|
|