summaryrefslogtreecommitdiff
path: root/openbox/actions
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/actions')
-rw-r--r--openbox/actions/cyclewindows.c8
-rw-r--r--openbox/actions/desktop.c10
-rw-r--r--openbox/actions/directionalwindows.c8
3 files changed, 12 insertions, 14 deletions
diff --git a/openbox/actions/cyclewindows.c b/openbox/actions/cyclewindows.c
index 782a4c60..52349091 100644
--- a/openbox/actions/cyclewindows.c
+++ b/openbox/actions/cyclewindows.c
@@ -185,17 +185,17 @@ static gboolean i_input_func(guint initial_state,
}
if (e->type == KeyPress) {
+ KeySym sym = obt_keyboard_keypress_to_keysym(e);
+
/* Escape cancels no matter what */
- if (ob_keycode_match(e->xkey.keycode, OB_KEY_ESCAPE)) {
+ if (sym == XK_Escape) {
o->cancel = TRUE;
o->state = e->xkey.state;
return FALSE;
}
/* There were no modifiers and they pressed enter */
- else if (ob_keycode_match(e->xkey.keycode, OB_KEY_RETURN) &&
- !initial_state)
- {
+ else if (sym == XK_Return && !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 a2d4be29..6c30d56d 100644
--- a/openbox/actions/desktop.c
+++ b/openbox/actions/desktop.c
@@ -312,17 +312,15 @@ static gboolean i_input_func(guint initial_state,
}
if (e->type == KeyPress) {
+ KeySym sym = obt_keyboard_keypress_to_keysym(e);
+
/* Escape cancels no matter what */
- if (ob_keycode_match(e->xkey.keycode, OB_KEY_ESCAPE)) {
+ if (sym == XK_Escape)
return FALSE;
- }
/* There were no modifiers and they pressed enter */
- else if (ob_keycode_match(e->xkey.keycode, OB_KEY_RETURN) &&
- !initial_state)
- {
+ else if (sym == XK_Return && !initial_state)
return FALSE;
- }
}
/* They released the modifiers */
else if (e->type == KeyRelease && initial_state && !(mods & initial_state))
diff --git a/openbox/actions/directionalwindows.c b/openbox/actions/directionalwindows.c
index e8410c96..7ede3333 100644
--- a/openbox/actions/directionalwindows.c
+++ b/openbox/actions/directionalwindows.c
@@ -269,16 +269,16 @@ static gboolean i_input_func(guint initial_state,
}
if (e->type == KeyPress) {
+ KeySym sym = obt_keyboard_keypress_to_keysym(e);
+
/* Escape cancels no matter what */
- if (ob_keycode_match(e->xkey.keycode, OB_KEY_ESCAPE)) {
+ if (sym == XK_Escape) {
end_cycle(TRUE, e->xkey.state, options);
return FALSE;
}
/* There were no modifiers and they pressed enter */
- else if (ob_keycode_match(e->xkey.keycode, OB_KEY_RETURN) &&
- !initial_state)
- {
+ else if (sym == XK_Return && !initial_state) {
end_cycle(FALSE, e->xkey.state, options);
return FALSE;
}