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
moved MOUSEMASK into event.c (not used in other places)
config
Anselm R. Garbe
18 years ago
parent
8b68890650
commit
d7734f996f
2 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
dwm.h
+1
-0
event.c
+ 0
- 1
dwm.h
View File
@ -36,7 +36,6 @@
/* mask shorthands, used in event.c and client.c */
#
define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
#
define MOUSEMASK (BUTTONMASK | PointerMotionMask)
/* other stuff used in different places */
#
define BORDERPX 1
#
define PROTODELWIN 1
+ 1
- 0
event.c
View File
@ -18,6 +18,7 @@ typedef struct {
KEYS
#
define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
#
define MOUSEMASK (BUTTONMASK | PointerMotionMask)
static
void
movemouse
(
Client
*
c
)
{
Write
Preview
Loading…
Cancel
Save