Skip to content

Commit

Permalink
Fixed #1. We're nearly ready for a 0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
HarveyHunt committed Sep 6, 2014
1 parent 498accf commit 5f492b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions howm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1616,9 +1616,11 @@ void client_to_ws(Client *c, const int ws)

/* Current workspace. */
if (c == wss[cw].head || !prev)
wss[cw].head = next_client(c);
//wss[cw].head = next_client(c);
wss[cw].head = c->next;
else
prev->next = next_client(c);
//prev->next = next_client(c);
prev->next = c->next;
c->next = NULL;
xcb_unmap_window(dpy, c->win);
update_focused_client(wss[cw].prev_foc);
Expand Down

0 comments on commit 5f492b0

Please sign in to comment.