From 5f492b07d676b5be8078bfa1db80f425eca4f003 Mon Sep 17 00:00:00 2001 From: HarveyHunt Date: Sat, 6 Sep 2014 18:24:08 +0100 Subject: [PATCH] Fixed #1. We're nearly ready for a 0.2 release. --- howm.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/howm.c b/howm.c index af8e96c..bb64a10 100644 --- a/howm.c +++ b/howm.c @@ -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);