|

楼主 |
发表于 2005-5-10 15:42:07
|
显示全部楼层
Post by halcyon79
手动改了一下,发现大部分符号的输入解决了,但是分号的问题依然存在
谢谢!
fcitx按分号之后空格键的行为在2.0.1版和3.1.1版中颇有不同,我的移植一开始是在2.0.1上进行的,我一直用它 可是最后动手的时候试了一下3.1.1,又改成了3.1.1,所以有点乱
- Index: src/ime.cpp
- ===================================================================
- RCS file: /cvsroot/scim/fcitx/src/ime.cpp,v
- retrieving revision 1.2
- diff -u -r1.2 ime.cpp
- --- src/ime.cpp 10 May 2005 01:28:25 -0000 1.2
- +++ src/ime.cpp 10 May 2005 07:33:23 -0000
- @@ -302,7 +302,6 @@
- if (iKey == ' ' && !key2.mask && iCodeInputCount==0) {
-
- strcpy (strStringGet, ";");
- - strcpy(strStringGet,strCodeInput);
- retVal = IRV_ENG;
- bInCap = False;
- @@ -335,7 +334,7 @@
- }
- else {
- strcpy (messageUp[0].strMsg, strCodeInput);
- - strcpy (messageDown[0].strMsg, "按 Enter/空 格 输入英文");
- + strcpy (messageDown[0].strMsg, "按 Enter输入英文");
- }
- messageUp[0].type = MSG_INPUT;
- messageDown[0].type = MSG_TIPS;
复制代码 |
|