diff --git a/src/fapp.cpp b/src/fapp.cpp index 13b66bbb..76004c01 100644 --- a/src/fapp.cpp +++ b/src/fapp.cpp @@ -440,7 +440,11 @@ int FApplication::modifierKeyCorrection (int& key) getModifierKey(); 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 ) {