From e7d5ef84180ea9dc51427ba5f3524f67b6506a67 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 25 Mar 2010 22:17:05 -0400 Subject: make keypad enter do the same thing as return --- openbox/actions/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openbox/actions/desktop.c') diff --git a/openbox/actions/desktop.c b/openbox/actions/desktop.c index cc0d9653..04b0bdd5 100644 --- a/openbox/actions/desktop.c +++ b/openbox/actions/desktop.c @@ -327,7 +327,7 @@ static gboolean i_input_func(guint initial_state, return FALSE; /* There were no modifiers and they pressed enter */ - else if (sym == XK_Return && !initial_state) + else if ((sym == XK_Return || sym == XK_KP_Enter) && !initial_state) return FALSE; } /* They released the modifiers */ -- cgit v1.2.3