diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2011-03-22 11:09:53 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2011-03-22 11:09:53 +0000 |
commit | 756c4b34173f00fa461e930a17369101ea259552 (patch) | |
tree | 6c5951c7f48cc7ba78c6c57bffe03ad3547bb963 /app | |
parent | 157b5c5575c4e5bb8dda9c16d8e78b77a2bd9c23 (diff) |
we should re-focus the client and ungrab the ptr even if we don't have a
mouse based match (i.e. in the kbd no match case). update the comment
as well.
ok oga@
Diffstat (limited to 'app')
-rw-r--r-- | app/cwm/menu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/cwm/menu.c b/app/cwm/menu.c index acdac8502..1771cc040 100644 --- a/app/cwm/menu.c +++ b/app/cwm/menu.c @@ -171,13 +171,14 @@ menu_filter(struct screen_ctx *sc, struct menu_q *menuq, char *prompt, } } out: - if (dummy == 0 && mi->dummy) { /* no match */ - xfree (mi); + if (dummy == 0 && mi->dummy) { /* no mouse based match */ + xfree(mi); mi = NULL; - xu_ptr_ungrab(); - XSetInputFocus(X_Dpy, focuswin, focusrevert, CurrentTime); } + XSetInputFocus(X_Dpy, focuswin, focusrevert, CurrentTime); + xu_ptr_ungrab(); + XUnmapWindow(X_Dpy, sc->menuwin); XUngrabKeyboard(X_Dpy, CurrentTime); @@ -390,7 +391,6 @@ menu_handle_release(XEvent *e, struct menu_ctx *mc, struct screen_ctx *sc, int entry, i = 0; entry = menu_calc_entry(sc, mc, e->xbutton.x, e->xbutton.y); - xu_ptr_ungrab(); if (mc->hasprompt) i = 1; |