summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-05-05 11:40:49 -0400
committerGitHub <noreply@github.com>2020-05-05 11:40:49 -0400
commitf342b099a53ec533dbb9e1ebafb2c9744c2edb65 (patch)
tree205ff2d6816a55bcc68934b1ffd3fe78564b590a
parent01231194cc7c8a4f3ac31e2fc5d72cb0c65e68b4 (diff)
parentc4f45fafac88d8e800abe1958116855ff172933e (diff)
Merge pull request #56 from aajonusonline/master
swallow patch: fix ignoring of noswallow in config
-rw-r--r--dwm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dwm.c b/dwm.c
index c15bdfb..a6968ff 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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);