From 6331c49fa59daadcd64d8847b821dd196c018635 Mon Sep 17 00:00:00 2001 From: Abs62 Date: Mon, 12 May 2014 17:47:05 +0400 Subject: [PATCH] Mac-specific: Fix popup window calling without modifiers pressed --- macmouseover.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macmouseover.mm b/macmouseover.mm index a58df736..305d585a 100644 --- a/macmouseover.mm +++ b/macmouseover.mm @@ -122,7 +122,7 @@ void MacMouseOver::timerShot() return; if( !pPref ) return; - if( pPref->enableScanPopupModifiers && checkModifiersPressed( pPref->scanPopupModifiers ) ) + if( !pPref->enableScanPopupModifiers || checkModifiersPressed( pPref->scanPopupModifiers ) ) handlePosition(); }