BUG: maliit definition for more then one deadkey
When i create keyboard layout for Czech and need two DeadKeys, i found bug in 'AccentedCharacterKey.qml'.
What is the right definition of "deadKeyAccents" for more deadkeys?
1) "´ˇéě" - all deadkeys symbol first, then all chars ..
or
2) "´éˇě" - deadkey symbol then char, repeat for all deadkeys ..
Original code (wrong for both definitions):
property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr(_deadAccentIndex*2+1, 1) : ""
for definition deadKeyAccents: "´éˇě" :
property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr(_deadAccentIndex+1, 1) : ""
for definition deadKeyAccents: "´ˇéě" :
property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr((_deadKeyAccents.length/2)+_deadAccentIndex, 1) : ""
This is question to Mer people .. :)
Well, rather Maliit :)
Stskeeps ( 2013-12-25 09:45:12 +0200 )editYes, it is Maliit, but with Jolla plugin. But plugin is created by Maliit person. OK, i fill bug on Maliit bugzilla.
Kaacz ( 2013-12-25 11:59:54 +0200 )edit