From 5056bb952ddd9d667d2897ab09324ef7ce1596ea Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Tue, 29 Aug 2006 09:25:14 +0200 Subject: [PATCH] fix client position in list also on tag and toggletag --- tag.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tag.c b/tag.c index a3dc6ab..7bc4da0 100644 --- a/tag.c +++ b/tag.c @@ -120,6 +120,8 @@ tag(Arg *arg) sel->tags[i] = False; sel->tags[arg->i] = True; settitle(sel); + detach(sel); + attach(sel); if(!isvisible(sel)) arrange(NULL); else @@ -139,6 +141,8 @@ toggletag(Arg *arg) if(i == ntags) sel->tags[arg->i] = True; settitle(sel); + detach(sel); + attach(sel); if(!isvisible(sel)) arrange(NULL); else -- 1.7.10.4