This website works better with JavaScript.
Home
Explore
Help
Sign In
gmarx
/
dwm-macbookair
mirror of
https://github.com/gmarxcc/dwm-macbookair
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
adding some prevention that master clients get smaller than bh
main
Anselm R. Garbe
18 years ago
parent
8c4623da80
commit
d939f301fa
1 changed files
with
2 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
view.c
+ 2
- 1
view.c
View File
@ -192,9 +192,10 @@ focusprev(Arg *arg) {
void
void
incnmaster
(
Arg
*
arg
)
{
incnmaster
(
Arg
*
arg
)
{
if
(
nmaster
+
arg
-
>
i
<
1
)
if
(
nmaster
+
arg
-
>
i
<
1
|
|
(
wah
/
(
nmaster
+
arg
-
>
i
)
<
bh
)
)
return
;
return
;
nmaster
+
=
arg
-
>
i
;
nmaster
+
=
arg
-
>
i
;
arrange
(
)
;
arrange
(
)
;
}
}
Write
Preview
Loading…
Cancel
Save