diff options
| -rw-r--r-- | openbox/keyboard.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/openbox/keyboard.c b/openbox/keyboard.c index 0ba7c869..bcac0a3c 100644 --- a/openbox/keyboard.c +++ b/openbox/keyboard.c @@ -244,10 +244,8 @@ void keyboard_event(ObClient *client, const XEvent *e) if (act->func == action_showmenu) { - act->data.showmenu.x = - e->xkey.x_root; - act->data.showmenu.y = - e->xkey.y_root; + act->data.showmenu.x = e->xkey.x_root; + act->data.showmenu.y = e->xkey.y_root; } act->data.any.c = client; |
