Skip to content
Snippets Groups Projects
Commit b15f7a69 authored by Olivier Fourdan's avatar Olivier Fourdan
Browse files

Don't skip windows that have the skip pager/taskbar properties when searching...

Don't skip windows that have the skip pager/taskbar properties when searching for windows below the pointer (bug #2550)

(Old svn revision: 23797)
parent c36a6f62
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ clientAtPosition (ScreenInfo *screen_info, int x, int y, Client * exclude)
if ((frameX (c2) < x) && (frameX (c2) + frameWidth (c2) > x)
&& (frameY (c2) < y) && (frameY (c2) + frameHeight (c2) > y))
{
if (clientSelectMask (c2, 0, WINDOW_REGULAR_FOCUSABLE)
if (clientSelectMask (c2, INCLUDE_SKIP_PAGER | INCLUDE_SKIP_TASKBAR, WINDOW_REGULAR_FOCUSABLE)
&& (c2 != exclude))
{
c = c2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment