We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3ada8f commit 72729acCopy full SHA for 72729ac
1 file changed
src/backend.cpp
@@ -432,6 +432,14 @@ class $modify(CCIMEDispatcher) {
432
if (!io.WantCaptureKeyboard) {
433
CCIMEDispatcher::dispatchInsertText(text, len, key);
434
}
435
+
436
+ switch (key) {
437
+ case KEY_Left:
438
+ case KEY_Right:
439
+ return;
440
+ default: break;
441
+ }
442
443
std::string str(text, len);
444
io.AddInputCharactersUTF8(str.c_str());
445
@@ -549,4 +557,4 @@ class $modify(CCKeyboardDispatcher) {
549
557
550
558
#endif
551
559
};
552
-#endif
560
+#endif
0 commit comments