True ![]()
mouse_behind_notch sticks at 1 until you left click somewhere else. Seems related to the bug at "Move Mouse Out of Notch & Menubar" Not Being Triggered and similarly seems to only occur when there is no 'Move mouse into notch' trigger.
You could mitigate it by adding a dummy 'move mouse into notch' trigger that does nothing, but Iād probably keep the matter self-contained by using mouse_pos_percent_x rather than relying on the buggy mouse_behind_notch detection at all.
On my 14" MacBook Pro the numbers work out as:
Over the Notch
hovered_element_details CONTAINS " AXRole: \"AXMenuBar\"" AND mouse_pos_percent_x > 44 AND mouse_pos_percent_x <= 56
Not over the Notch
hovered_element_details CONTAINS " AXRole: \"AXMenuBar\"" AND (mouse_pos_percent_x <= 44 OR mouse_pos_percent_x > 56)```