mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-07 11:30:33 +00:00
Added call to XAutoRepeatOff() to disable keyboard autorepeat on X11Input.
This commit is contained in:
parent
88f1ce081f
commit
9c98321c76
|
@ -425,7 +425,8 @@ namespace OpenTK.Platform.X11
|
|||
[DllImport("libX11")]
|
||||
public static extern void XSync(Display display, bool discard);
|
||||
|
||||
|
||||
[DllImport("libX11")]
|
||||
public static extern void XAutoRepeatOff(IntPtr display);
|
||||
|
||||
public static void SendNetWMMessage(X11WindowInfo window, IntPtr message_type, IntPtr l0, IntPtr l1, IntPtr l2)
|
||||
{
|
||||
|
|
|
@ -78,6 +78,8 @@ namespace OpenTK.Platform.X11
|
|||
keyboard.DeviceID = IntPtr.Zero;
|
||||
dummy_keyboard_list.Add(keyboard);
|
||||
|
||||
Functions.XAutoRepeatOff(window.Display);
|
||||
|
||||
Debug.Unindent();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue