Skip to content

Commit

Permalink
[client] wayland: fix full screen toggle in capture mode regression
Browse files Browse the repository at this point in the history
This was fixed in 9db3cd7 and accidentally broke again in 4b99bba.
  • Loading branch information
quantum5 authored and gnif committed Jun 19, 2021
1 parent facbb54 commit f3a1eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/displayservers/Wayland/input.c
Expand Up @@ -439,7 +439,7 @@ void waylandUngrabKeyboard(void)

void waylandWarpPointer(int x, int y, bool exiting)
{
if (!wlWm.pointerInSurface)
if (!wlWm.pointerInSurface || wlWm.lockedPointer)
return;

INTERLOCKED_SECTION(wlWm.confineLock,
Expand Down

0 comments on commit f3a1eaf

Please sign in to comment.