Bugfix: Store dock clients per screen, not per workspace.

This fixes ticket #12
This commit is contained in:
Michael Stapelberg
2009-04-11 14:29:15 +02:00
parent 8cc1fcf536
commit bcbe800720
6 changed files with 12 additions and 8 deletions

View File

@ -227,7 +227,7 @@ void reparent_window(xcb_connection_t *conn, xcb_window_t child,
new->titlebar_position = TITLEBAR_OFF;
new->force_reconfigure = true;
new->container = NULL;
SLIST_INSERT_HEAD(&(c_ws->dock_clients), new, dock_clients);
SLIST_INSERT_HEAD(&(c_ws->screen->dock_clients), new, dock_clients);
}
}