This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
dwm
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
applied fix of toggletag by Jan Kaliszewski
master
Premysl Hruby
16 years ago
parent
840f937a98
commit
0f26de991f
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
dwm.c
+ 5
- 1
dwm.c
View File
@ -1469,8 +1469,12 @@ togglefloating(const Arg *arg) {
void
toggletag
(
const
Arg
*
arg
)
{
unsigned
int
mask
=
sel
-
>
tags
^
(
arg
-
>
ui
&
TAGMASK
)
;
unsigned
int
mask
;
if
(
!
sel
)
return
;
mask
=
sel
-
>
tags
^
(
arg
-
>
ui
&
TAGMASK
)
;
if
(
sel
&
&
mask
)
{
sel
-
>
tags
=
mask
;
arrange
(
)
;
Write
Preview
Loading…
Cancel
Save