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

Check only visible windows to see if client is on top of stack (bug #2960)

(Old svn revision: 25174)
parent aceda568
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,8 @@ gboolean
clientIsTopMost (Client *c)
{
ScreenInfo *screen_info;
GList *index;
GList *index, *index2;
Client *c2;
g_return_val_if_fail (c != NULL, FALSE);
TRACE ("entering clientIsTopMost");
......@@ -166,18 +167,18 @@ clientIsTopMost (Client *c)
index = g_list_find (screen_info->windows_stack, (gconstpointer) c);
if (index)
{
GList *index2 = g_list_next (index);
if (index2)
{
Client *c2 = (Client *) index2->data;
return (c2->win_layer > c->win_layer);
}
else
index2 = g_list_next (index);
while (index2)
{
return TRUE;
c2 = (Client *) index2->data;
if (FLAG_TEST (c2->xfwm_flags, XFWM_FLAG_VISIBLE) && (c2->win_layer == c->win_layer))
{
return FALSE;
}
index2 = g_list_next (index2);
}
}
return FALSE;
return TRUE;
}
Client *
......
......@@ -385,7 +385,7 @@ workspaceSwitch (ScreenInfo *screen_info, int new_ws, Client * c2, gboolean upda
{
if ((screen_info->params->click_to_focus) && (screen_info->params->raise_on_click))
{
if (!clientIsTopMost (new_focus))
if (!(screen_info->params->raise_on_focus) && !clientIsTopMost (new_focus))
{
clientRaise (new_focus, None);
}
......
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