Viktor Verbitsky

Results 5 comments of Viktor Verbitsky

Yes. Of-course. As soon as I will found some time for reproduce the problem. Sorry for long delay.

Yes. Finally I reproduce this error again: https://gist.github.com/vektory79/34ec4225ada199d67bd40b034300b8fa dlcheck.log looks lake: https://gist.github.com/vektory79/d70a87b25da7b3d27ca79fc2fc44d3b9

Can to confirm. Can't print any character except latin.

It seems this happens because Offscreen Rendering mode is enabled for Linux. After I changed it to `false` [here](https://github.com/TabbyML/tabby/blob/main/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/chat/ChatBrowser.kt#L65), everything started working properly.

The issue lies in JCEF. When creating the browser in the Tabby plugin, setting `setOffScreenRendering` to `true` breaks keyboard input on Linux. ```kotlin class ChatBrowser(private val project: Project) : JBCefBrowser(...