Add a modifier key correction for the linux tty
This commit is contained in:
parent
3a822e3f3b
commit
8b0ac17b63
|
@ -440,7 +440,11 @@ int FApplication::modifierKeyCorrection (int& key)
|
||||||
getModifierKey();
|
getModifierKey();
|
||||||
modifier_key& m = mod_key;
|
modifier_key& m = mod_key;
|
||||||
|
|
||||||
if ( m.shift && ! m.ctrl && ! m.alt )
|
if ( ! m.shift && ! m.ctrl && ! m.alt )
|
||||||
|
{
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
else if ( m.shift && ! m.ctrl && ! m.alt )
|
||||||
{
|
{
|
||||||
switch ( key )
|
switch ( key )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue