|
在magic linux 1.1 中的那个fcitx 1.8.4的patch,为什么在1.8.5中还没有加入呀?
diff -Nur fcitx-1.8.4/xim.c /usr/src/redhat/SOURCES/fcitx-1.8.4/xim.c
--- fcitx-1.8.4/xim.c 2003-04-16 17:07:28.000000000 +0800
+++ /usr/src/redhat/SOURCES/fcitx-1.8.4/xim.c 2003-04-23 20:54:09.000000000 +0800
@@ -389,8 +389,11 @@
/*
* Lookup KeyPress Events only
*/
- if (call_data->event.type != KeyPress)
+ if (call_data->event.type != KeyPress){
+ IMForwardEvent (ims, (XPointer) call_data);
+
return False;
+ }
if (iKeyState == KEY_NONE && ((XKeyEvent *) & call_data->event)->keycode == 37)
bCtrlOnly = True;
else |
|