diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-05-05 11:40:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 11:40:49 -0400 |
commit | f342b099a53ec533dbb9e1ebafb2c9744c2edb65 (patch) | |
tree | 205ff2d6816a55bcc68934b1ffd3fe78564b590a | |
parent | 01231194cc7c8a4f3ac31e2fc5d72cb0c65e68b4 (diff) | |
parent | c4f45fafac88d8e800abe1958116855ff172933e (diff) |
Merge pull request #56 from aajonusonline/master
swallow patch: fix ignoring of noswallow in config
-rw-r--r-- | dwm.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -359,6 +359,7 @@ applyrules(Client *c) { c->isterminal = r->isterminal; c->isfloating = r->isfloating; + c->noswallow = r->noswallow; c->tags |= r->tags; if ((r->tags & SPTAGMASK) && r->isfloating) { c->x = c->mon->wx + (c->mon->ww / 2 - WIDTH(c) / 2); |