bugfix
ci/woodpecker/tag/woodpecker Pipeline was successful Details

This commit is contained in:
Luca Bilke 2024-02-28 12:34:00 +01:00
parent 899b471099
commit a9b8b536c7
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
1 changed files with 0 additions and 10 deletions

View File

@ -1,15 +1,5 @@
--- a/dwm.c --- a/dwm.c
+++ b/dwm.c +++ b/dwm.c
@@ -1937,7 +1937,8 @@ sendmon(Client *c, Monitor *m)
c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
attachx(c);
attachstack(c);
- arrange(m);
+ if (!c->isfloating)
+ arrange(m);
if (hadfocus) {
focus(c);
restack(m);
@@ -2303,8 +2304,11 @@ tagmon(const Arg *arg) @@ -2303,8 +2304,11 @@ tagmon(const Arg *arg)
c->isfullscreen = 1; c->isfullscreen = 1;
resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh); resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);