X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=dwm.c;h=096895c4617019542c64886f0d25a8c659e84f49;hp=b54ccd4f30e9c068be1453b62fb4caf9e45075cc;hb=64674c395b89f8d9640163cdcf9c8f4e25ba0e9c;hpb=ab06f7444bf558d4a58e6ca617b1b4f55c6b00c7 diff --git a/dwm.c b/dwm.c index b54ccd4..096895c 100644 --- a/dwm.c +++ b/dwm.c @@ -804,13 +804,11 @@ focusmon(const Arg *arg) { for(i = 0, m = mons; m; m = m->next, i++) if(i == arg->ui) { - if(m->stack) - focus(m->stack); - else { - unfocus(selmon->stack); - selmon = m; - focus(NULL); - } + if(m == selmon) + return; + unfocus(selmon->sel); + selmon = m; + focus(NULL); drawbars(); break; } @@ -1502,11 +1500,10 @@ tagmon(const Arg *arg) { detach(c); detachstack(c); c->mon = m; + c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ attach(c); attachstack(c); - m->sel = c; - for(c = selmon->stack; c && !ISVISIBLE(c); c = c->snext); - selmon->sel = c; + focus(NULL); arrange(); break; }