April 16, 2026
7:30 a.m.
Rémi Bernon (@rbernon) commented about dlls/winex11.drv/keyboard.c:
return TRUE; }
+void x11drv_xkb_init( Display *display ) +{ + XkbUseExtension( display, NULL, NULL ); +} + +void x11drv_xkb_init_thread( struct x11drv_thread_data *data ) +{ + XkbUseExtension( data->display, NULL, NULL ); + XkbSetDetectableAutoRepeat( data->display, True, NULL ); +}
It doesn't seem very useful, let's delay this until and if we actually have something to add to these. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10550#note_136453