aboutsummaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorbernd2007-04-27 18:10:39 +0000
committerbernd2007-04-27 18:10:39 +0000
commitef7a73c51f1e8c490b81c82229f4d9430f1a010d (patch)
treeff81632f92d8c570054616e83920c24c3d7b7beb /input.c
parent7c8043d99252ee1f16a0c00c2712ed543d44cba1 (diff)
downloadcwm-ef7a73c51f1e8c490b81c82229f4d9430f1a010d.tar.gz
Apply cwm-3-input_shift.diff from http://aon.iki.fi/cwm/.
Diffstat (limited to '')
-rw-r--r--input.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/input.c b/input.c
index 4114c10..28ce7f4 100644
--- a/input.c
+++ b/input.c
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
- * $Id: input.c,v 1.1.1.1 2007/04/27 17:58:48 bernd Exp $
+ * $Id: input.c,v 1.2 2007/04/27 18:10:39 bernd Exp $
*/
#include "headers.h"
@@ -19,7 +19,10 @@ input_keycodetrans(KeyCode kc, u_int state,
*ctl = CTL_NONE;
*chr = '\0';
- ks = XKeycodeToKeysym(G_dpy, kc, 0);
+ if (state & ShiftMask)
+ ks = XKeycodeToKeysym(G_dpy, kc, 1);
+ else
+ ks = XKeycodeToKeysym(G_dpy, kc, 0);
/* Look for control characters. */
switch (ks) {