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
fixed missing else branch
config
Anselm R Garbe
16 years ago
parent
4adfdc9d95
commit
508922b90d
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
dwm.c
+ 2
- 1
dwm.c
View File
@ -374,7 +374,8 @@ buttonpress(XEvent *e) {
else
if
(
ev
-
>
button
=
=
Button2
)
{
if
(
(
floating
!
=
m
-
>
layout
-
>
arrange
)
&
&
c
-
>
isfloating
)
togglefloating
(
NULL
)
;
zoom
(
NULL
)
;
else
zoom
(
NULL
)
;
}
else
if
(
ev
-
>
button
=
=
Button3
&
&
!
c
-
>
isfixed
)
{
restack
(
)
;
Write
Preview
Loading…
Cancel
Save