diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-01-11 18:57:32 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-11 18:57:32 -0500 |
| commit | 040d344a89f40487de8a1920e0aaeccd93a6a995 (patch) | |
| tree | 03c14b7b496f57d12480a6728cebf7360428bde1 /openbox/menuframe.h | |
| parent | 78cd9bba523f4986413e3aefe87704e9d11cd081 (diff) | |
don't take KeyRelease events for menus until they receive a KeyPress event first. avoid using the key binding used to show the menu to execute something inside it.
Diffstat (limited to 'openbox/menuframe.h')
| -rw-r--r-- | openbox/menuframe.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openbox/menuframe.h b/openbox/menuframe.h index 191bcfe8..06975972 100644 --- a/openbox/menuframe.h +++ b/openbox/menuframe.h @@ -73,6 +73,11 @@ struct _ObMenuFrame RrAppearance *a_title; RrAppearance *a_items; + + gboolean got_press; /* don't allow a KeyRelease event to run things in the + menu until it has seen a KeyPress. this is to + avoid having the keybinding used to show the menu + end up running something inside the menu */ }; struct _ObMenuEntryFrame |
