aboutsummaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'input.c')
-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) {