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 Sanders zoom_update patch
config
Anselm R.Garbe
18 years ago
parent
6521c2dd41
commit
9fce8215b7
2 changed files
with
2 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
client.c
+1
-2
event.c
+ 1
- 1
client.c
View File
@ -461,7 +461,7 @@ zoom(Arg *arg)
{
Client
*
c
;
if
(
!
sel
|
|
(
arrange
!
=
dotile
)
|
|
sel
-
>
isfloat
)
if
(
!
sel
|
|
(
arrange
!
=
dotile
)
|
|
sel
-
>
isfloat
|
|
sel
-
>
ismax
)
return
;
if
(
sel
=
=
getnext
(
clients
)
)
{
+ 1
- 2
event.c
View File
@ -132,8 +132,7 @@ buttonpress(XEvent *e)
movemouse
(
c
)
;
break
;
case
Button2
:
if
(
!
c
-
>
ismax
&
&
arrange
!
=
dofloat
&
&
!
c
-
>
isfloat
)
zoom
(
NULL
)
;
zoom
(
NULL
)
;
break
;
case
Button3
:
if
(
!
c
-
>
ismax
&
&
(
arrange
=
=
dofloat
|
|
c
-
>
isfloat
)
)
Write
Preview
Loading…
Cancel
Save