diff options
author | okan | 2017-12-11 20:58:18 +0000 |
---|---|---|
committer | okan | 2017-12-11 20:58:18 +0000 |
commit | b4bb11eff610c98b0b4399ae707c22d68fafae74 (patch) | |
tree | 5c766e59a5ac6bd35e25e805c7ac8d19db873154 /calmwm.h | |
parent | 2cc69c661a1ffb9a7de17e1a58657701edda41a6 (diff) | |
download | cwm-b4bb11eff610c98b0b4399ae707c22d68fafae74.tar.gz |
Unconditionally show prompt on menus, regardless of invocation.
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.344 2017/12/07 16:25:33 okan Exp $ + * $OpenBSD: calmwm.h,v 1.345 2017/12/11 20:58:18 okan Exp $ */ #ifndef _CALMWM_H_ @@ -44,9 +44,9 @@ #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) #define MOUSEMASK (BUTTONMASK | PointerMotionMask) -#define MENUMASK (MOUSEMASK | ButtonMotionMask | ExposureMask) +#define MENUMASK (MOUSEMASK | ButtonMotionMask | ExposureMask | \ + KeyPressMask | ExposureMask) #define MENUGRABMASK (MOUSEMASK | ButtonMotionMask | StructureNotifyMask) -#define KEYMASK (KeyPressMask | ExposureMask) #define IGNOREMODMASK (LockMask | Mod2Mask | 0x2000) /* direction/amount */ |