summaryrefslogtreecommitdiff
path: root/openbox/actions
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2010-03-25 22:17:05 -0400
committerDana Jansens <danakj@orodu.net>2010-03-25 22:18:37 -0400
commite7d5ef84180ea9dc51427ba5f3524f67b6506a67 (patch)
tree29c7b2977eeb41d115e68cc6e9f03b636bb7204e /openbox/actions
parent11bb31d3bc712aa31d73065383d32f1510393fe2 (diff)
make keypad enter do the same thing as return
Diffstat (limited to 'openbox/actions')
-rw-r--r--openbox/actions/cyclewindows.c2
-rw-r--r--openbox/actions/desktop.c2
-rw-r--r--openbox/actions/directionalwindows.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/openbox/actions/cyclewindows.c b/openbox/actions/cyclewindows.c
index 6d852fdf..6bd96577 100644
--- a/openbox/actions/cyclewindows.c
+++ b/openbox/actions/cyclewindows.c
@@ -195,7 +195,7 @@ static gboolean i_input_func(guint initial_state,
}
/* 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) {
o->cancel = FALSE;
o->state = e->xkey.state;
return FALSE;
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 */
diff --git a/openbox/actions/directionalwindows.c b/openbox/actions/directionalwindows.c
index d67c3ef4..602e7edc 100644
--- a/openbox/actions/directionalwindows.c
+++ b/openbox/actions/directionalwindows.c
@@ -278,7 +278,7 @@ static gboolean i_input_func(guint initial_state,
}
/* 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) {
end_cycle(FALSE, e->xkey.state, options);
return FALSE;
}