Mac-specific: Fix popup window calling without modifiers pressed

This commit is contained in:
Abs62 2014-05-12 17:47:05 +04:00
parent e2e4a6977c
commit 6331c49fa5

View file

@ -122,7 +122,7 @@ void MacMouseOver::timerShot()
return;
if( !pPref )
return;
if( pPref->enableScanPopupModifiers && checkModifiersPressed( pPref->scanPopupModifiers ) )
if( !pPref->enableScanPopupModifiers || checkModifiersPressed( pPref->scanPopupModifiers ) )
handlePosition();
}