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
small fix
main
Anselm R. Garbe
18 years ago
parent
f6656fffb4
commit
f18ed615ae
2 changed files
with
3 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
main.c
+2
-2
view.c
+ 1
- 0
main.c
View File
@ -55,6 +55,7 @@ cleanup()
XDestroyWindow
(
dpy
,
barwin
)
;
XDestroyWindow
(
dpy
,
barwin
)
;
XSetInputFocus
(
dpy
,
PointerRoot
,
RevertToPointerRoot
,
CurrentTime
)
;
XSetInputFocus
(
dpy
,
PointerRoot
,
RevertToPointerRoot
,
CurrentTime
)
;
XSync
(
dpy
,
False
)
;
XSync
(
dpy
,
False
)
;
free
(
seltag
)
;
}
}
static
void
static
void
+ 2
- 2
view.c
View File
@ -41,7 +41,7 @@ reorder()
static
Client
*
static
Client
*
nexttiled
(
Client
*
c
)
nexttiled
(
Client
*
c
)
{
{
for
(
c
=
getnext
(
c
-
>
next
)
;
c
&
&
c
-
>
isfloat
;
c
=
getnext
(
c
-
>
next
)
)
;
for
(
c
=
getnext
(
c
)
;
c
&
&
c
-
>
isfloat
;
c
=
getnext
(
c
-
>
next
)
)
;
return
c
;
return
c
;
}
}
@ -325,7 +325,7 @@ zoom(Arg *arg)
return
;
return
;
if
(
(
c
=
sel
)
=
=
nexttiled
(
clients
)
)
if
(
(
c
=
sel
)
=
=
nexttiled
(
clients
)
)
if
(
!
(
c
=
nexttiled
(
c
)
)
)
if
(
!
(
c
=
nexttiled
(
c
-
>
next
)
)
)
return
;
return
;
detach
(
c
)
;
detach
(
c
)
;
c
-
>
next
=
clients
;
c
-
>
next
=
clients
;
Write
Preview
Loading…
Cancel
Save