John Levon wrote:
> bool QLyXKeySym::isModifier() const
> {
> -        return q_is_modifier(key_);
> +        return text_.empty() && q_is_modifier(key_);
> }

Like this (otherwise it won't compile)
+       return text_.isEmpty() && q_is_modifier(key_);

it fixes the input of �, �, � and � for me, but not the capitals (�, �, �)
Below is the -dbg key for the Sequenze "���"

Thanks,
J�rgen


Press key 65535 text "�", ascii "196"
sym empty in getSymbolName()
getSymbolName() -> �
KeySym is �
action first set to [43]
action now set to [43]
sym empty in getSymbolName()
getSymbolName() -> �
Key [action=43][S-�]
Press key 65535 text "�", ascii "214"
sym empty in getSymbolName()
getSymbolName() -> �
KeySym is �
action first set to [43]
action now set to [43]
sym empty in getSymbolName()
getSymbolName() -> �
Key [action=43][S-�]
Press key 65535 text "�", ascii "220"
sym empty in getSymbolName()
getSymbolName() -> �
KeySym is �
action first set to [43]
action now set to [43]
sym empty in getSymbolName()
getSymbolName() -> �
Key [action=43][S-�]

Reply via email to