diff options
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c index 8a004d9..5321ed3 100644 --- a/src/actions.c +++ b/src/actions.c @@ -620,6 +620,10 @@ parse_keydesc (char *s) } else if (!strcmp (token, "S")) { + p->state |= RP_SHIFT_MASK; + } + else if (!strcmp (token, "s")) + { p->state |= RP_SUPER_MASK; } else if (!strcmp (token, "H")) |