fix for the bug sometimes halflife have no keyboard input/focus only mouse focus: how it works:set the keyboard focus with the first mouse click. maybe its more a hack then a fix. Jochen
Index: wine/dlls/x11drv/mouse.c =================================================================== RCS file: /home/wine/wine/dlls/x11drv/mouse.c,v retrieving revision 1.11 diff -r1.11 mouse.c 554c554,555 < --- > static int first_click = 1; > 557a559,563 > if (first_click) { > X11DRV_SetFocus(hwnd); > first_click=0; > } >