Displaying 3 results from an estimated 3 matches for "xfilterev".
Did you mean:
filtered
2006 Sep 02
1
Backspace key is sending Delete after update to 4.4 (tcsh issue?)
...event, serial 28, synthetic NO, window 0x2800001,
root 0x48, subw 0x0, time 1593248, (136,112), root:(179,193),
state 0x0, keycode 22 (keysym 0xff08, BackSpace), same_screen
YES,
XLookupString gives 1 bytes: (08) "
XmbLookupString gives 1 bytes: (08) "
XFilterEvent returns: False
KeyRelease event, serial 28, synthetic NO, window 0x2800001,
root 0x48, subw 0x0, time 1593358, (136,112), root:(179,193),
state 0x0, keycode 22 (keysym 0xff08, BackSpace), same_screen
YES,
XLookupString gives 1 bytes: (08) "
If I remove that bindk...
2018 Sep 07
1
Centos 7.5 - Gnome3 - KVM - Keypad numeric failure
Everyone,
I have a problem with the numeric keypad while using a Centos 7.5 new
installation with kvm.
When I login to the host machine using gnome3 or classic gnome the
numeric keypad does not function. If I activate another 7.5 guest
machine with gnome3 the numeric keypad on the guest does not work
either.
If I login on the host machine using kde as the desktop the keypad
works fine and
2003 Apr 10
1
Starcraft Patch
...+ Display *display = data->display;
+#endif
+
wine_tsx11_lock();
- while ( XPending( data->display ) )
+ /* Changed to make starcraft work */
+ while ( XPending( display ) )
{
- Bool ignore;
-
- XNextEvent( data->display, &event );
- ignore = XFilterEvent( &event, None );
+ XNextEvent( display, &event );
wine_tsx11_unlock();
- if (!ignore) EVENT_ProcessEvent( &event );
+ EVENT_ProcessEvent( &event );
count++;
wine_tsx11_lock();
}
+/* this is a way in old patch, but I think it is...