View Single Post
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#12
Ok, I found which file do this... This one:
Code:
/usr/share/maliit/plugins/com/jolla/Xt9InputHandler.qml
I played with this section that changed output of spacebar key:
Code:
    if (pressedKey.key === Qt.Key_Space) {
        if (preedit !== "") {
            thread.acceptWord(preedit, true)
            commit(preedit + " ")
            keyboard.autocaps = false // assuming no autocaps after input with xt9 preedit
        } else {
            commit(" ")
        }
More specific, with this line:
Code:
commit(preedit + " ")
But I didn't find the right combination to fix my problem...
Someone ? Any ideas ?
 

The Following User Says Thank You to Schturman For This Useful Post: