키 입력이 잘못되었습니다 사이클을 필요로하는 작업이있을 때

나는 꽤 최근의 Lubuntu를 실행 중이며 백그라운드에서 많은 CPU 사이클을 필요로하는 작업이있을 때 초기화 과정에서 창에 입력하면 키 입력이 잘못됩니다. 예를 들어 브라우저 (Chrome)에서 여전히 UI를 다시 그릴 때

이걸 본 사람 있어요?

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.1 LTS
Release:    14.04
Codename:   trusty



답변

https://code.google.com/p/chromium/issues/detail?id=410649 는 ibus 문제 일 수 있습니다.

요컨대, 동기 모드의 ibus는 재미있는 일을합니다. https://code.google.com/p/ibus/issues/detail?id=1697#c2를 참조하여 해당 링크의 맨 아래에서 해결 방법이 있습니다 .

Also for the record the user can work around the problem by setting
IBUS_ENABLE_SYNC_MODE=1

IBUS_ENABLE_SYNC_MODE=0 ibus-daemon --xim --replace --verbose    --- This exhibits the problem.
IBUS_ENABLE_SYNC_MODE=1 ibus-daemon --xim --replace --verbose    --- This works fine.
IBUS_ENABLE_SYNC_MODE=0 ibus-daemon --replace --verbose    --- This works fine.
IBUS_ENABLE_SYNC_MODE=1 ibus-daemon --replace --verbose    --- This works fine.


답변