mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
Mac-specific: Fix popup window calling without modifiers pressed
This commit is contained in:
parent
e2e4a6977c
commit
6331c49fa5
|
@ -122,7 +122,7 @@ void MacMouseOver::timerShot()
|
|||
return;
|
||||
if( !pPref )
|
||||
return;
|
||||
if( pPref->enableScanPopupModifiers && checkModifiersPressed( pPref->scanPopupModifiers ) )
|
||||
if( !pPref->enableScanPopupModifiers || checkModifiersPressed( pPref->scanPopupModifiers ) )
|
||||
handlePosition();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue