summaryrefslogtreecommitdiff
path: root/i3lock.c
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2010-11-09 19:35:16 +0100
committerMichael Stapelberg <michael@stapelberg.de>2010-11-09 19:35:16 +0100
commit7ba6f073221c11cb6c6bee434b9b3456d6f73074 (patch)
treeeb8d4e1bbf7984024627549ec82f4878d3f25634 /i3lock.c
parentf891929d34b1ddad224550c1dbf15c542e59c106 (diff)
add XK_KP_Enter as synonym for XK_Return
Diffstat (limited to 'i3lock.c')
-rw-r--r--i3lock.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/i3lock.c b/i3lock.c
index 198d334..0f77c4a 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -135,6 +135,7 @@ static void handle_key_press(xcb_key_press_event_t *event) {
return;
case XK_Return:
+ case XK_KP_Enter:
input_done();
case XK_Escape:
input_position = 0;