summaryrefslogtreecommitdiffhomepage
path: root/patch
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-03-20 16:18:58 +0100
committerbakkeby <[email protected]>2020-03-20 16:18:58 +0100
commit2541d38d2ce2be00d39be16f69ae0e793d168aa1 (patch)
tree66621b5ef9748596362e93c5293e5b4479b2f97c /patch
parent8047fe257bb95490d5a027a9d3f406f16394108c (diff)
downloaddwm-flexipatch-2541d38d2ce2be00d39be16f69ae0e793d168aa1.tar.gz
dwm-flexipatch-2541d38d2ce2be00d39be16f69ae0e793d168aa1.zip
Rewording slave --> stack
Diffstat (limited to 'patch')
-rw-r--r--patch/layout_facts.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/patch/layout_facts.c b/patch/layout_facts.c
index bc0a97a..e5beb4b 100644
--- a/patch/layout_facts.c
+++ b/patch/layout_facts.c
@@ -20,9 +20,9 @@ getfacts(Monitor *m, int msize, int ssize, float *mf, float *sf, int *mr, int *s
stotal += ssize * (c->cfact / sfacts);
*mf = mfacts; // total factor of master area
- *sf = sfacts; // total factor of slave area
+ *sf = sfacts; // total factor of stack area
*mr = msize - mtotal; // the remainder (rest) of pixels after a cfacts master split
- *sr = ssize - stotal; // the remainder (rest) of pixels after a cfacts slave split
+ *sr = ssize - stotal; // the remainder (rest) of pixels after a cfacts stack split
}
#else
void
@@ -44,8 +44,8 @@ getfacts(Monitor *m, int msize, int ssize, float *mf, float *sf, int *mr, int *s
stotal += ssize / sfacts;
*mf = mfacts; // total factor of master area
- *sf = sfacts; // total factor of slave area
+ *sf = sfacts; // total factor of stack area
*mr = msize - mtotal; // the remainder (rest) of pixels after an even master split
- *sr = ssize - stotal; // the remainder (rest) of pixels after an even slave split
+ *sr = ssize - stotal; // the remainder (rest) of pixels after an even stack split
}
-#endif // CFACTS_PATCH \ No newline at end of file
+#endif // CFACTS_PATCH