projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e49d5a
)
replaced BORDERPX with sel->border in togglemax(), in other places this is not possible.
author
Anselm R. Garbe
<arg@suckless.org>
Wed, 30 May 2007 18:49:38 +0000
(20:49 +0200)
committer
Anselm R. Garbe
<arg@suckless.org>
Wed, 30 May 2007 18:49:38 +0000
(20:49 +0200)
config.mk
patch
|
blob
|
history
layout.c
patch
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index de2fb006dfb37b8b4f504cd1f00533c39e56d625..f0c34894f7f79ae9dce8e0ec7c0624aa67e1ab38 100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-1,5
+1,5
@@
# dwm version
-VERSION = 4.
2
+VERSION = 4.
3
# Customize below to fit your system
diff --git
a/layout.c
b/layout.c
index ecd7a16616f2173a406e1191a41b06f23df8ba79..f3f8e26d3c2b52853be8d02bbf2e1be6b1000c2a 100644
(file)
--- a/
layout.c
+++ b/
layout.c
@@
-243,7
+243,7
@@
togglemax(const char *arg) {
sel->ry = sel->y;
sel->rw = sel->w;
sel->rh = sel->h;
- resize(sel, wax, way, waw - 2 *
BORDERPX, wah - 2 * BORDERPX
, True);
+ resize(sel, wax, way, waw - 2 *
sel->border, wah - 2 * sel->border
, True);
}
else
resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);