This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dwm
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
applied Jukkas patch
config
arg@mig29
18 years ago
parent
0c5f47e720
commit
f78c16f8c6
1 changed files
with
7 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-3
view.c
+ 7
- 3
view.c
View File
@ -196,9 +196,13 @@ isvisible(Client *c) {
void
resizemaster
(
Arg
*
arg
)
{
if
(
master
+
arg
-
>
i
>
950
|
|
master
+
arg
-
>
i
<
50
)
return
;
master
+
=
arg
-
>
i
;
if
(
arg
-
>
i
=
=
0
)
master
=
MASTER
;
else
{
if
(
master
+
arg
-
>
i
>
950
|
|
master
+
arg
-
>
i
<
50
)
return
;
master
+
=
arg
-
>
i
;
}
arrange
(
)
;
}
Write
Preview
Loading…
Cancel
Save