about summary refs log tree commit diff
path: root/xevents.c
diff options
context:
space:
mode:
authorokan <okan>2020-02-07 18:53:41 +0000
committerokan <okan>2020-02-07 18:53:41 +0000
commit54d95c06109091056d3f8b2ac73e2ebc30e090e6 (patch)
tree0d9a5a4b111137ae40f90920edbcf537208e6328 /xevents.c
parent450ab06ab776e972a4c401aa91ba9627464fa513 (diff)
parent7a88b2bdb2789e549ed4caab37c814198e347696 (diff)
downloadcwm-54d95c06109091056d3f8b2ac73e2ebc30e090e6.tar.gz
cwm-54d95c06109091056d3f8b2ac73e2ebc30e090e6.tar.xz
cwm-54d95c06109091056d3f8b2ac73e2ebc30e090e6.zip
cvsimport
* refs/heads/master:
  Allow the 'empty' group clients to be window-{h,v}tile'd.
  Map ('5') and allow mod5mask (altgr) as a modifier.
  add, then use, xvasprintf, checking for appropriate return.
  Ensure the pointer stays within client bounds after a window 'snap' (to edge).
Diffstat (limited to 'xevents.c')
-rw-r--r--xevents.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xevents.c b/xevents.c
index dd4bcb3..fbd93c5 100644
--- a/xevents.c
+++ b/xevents.c
@@ -69,7 +69,7 @@ void		(*xev_handlers[LASTEvent])(XEvent *) = {
 };
 
 static KeySym modkeys[] = { XK_Alt_L, XK_Alt_R, XK_Super_L, XK_Super_R,
-			    XK_Control_L, XK_Control_R };
+			    XK_Control_L, XK_Control_R, XK_ISO_Level3_Shift };
 
 static void
 xev_handle_maprequest(XEvent *ee)