Bugfix: Don’t hide assigned clients to inactive but visible workspaces (Thanks xeen)

This commit is contained in:
Michael Stapelberg 2009-08-02 22:33:25 +02:00
parent fee5add721
commit 51ad4baa41
1 changed files with 2 additions and 1 deletions

View File

@ -342,7 +342,8 @@ void reparent_window(xcb_connection_t *conn, xcb_window_t child,
new->workspace = t_ws;
old_focused = new->container->currently_focused;
xcb_unmap_window(conn, new->frame);
if (t_ws->screen->current_workspace != t_ws->num)
xcb_unmap_window(conn, new->frame);
break;
}
}