forked from e16/e16
1
0
Fork 0

Do not propagate key events.

SVN revision: 45208
This commit is contained in:
Kim Woelders 2010-01-16 11:50:07 +00:00
parent c26e602d3b
commit 0ead506d0a
1 changed files with 2 additions and 1 deletions

View File

@ -269,7 +269,8 @@ EwinManage(EWin * ewin)
att.event_mask = EWIN_TOP_EVENT_MASK;
att.do_not_propagate_mask =
ButtonPressMask | ButtonReleaseMask | PointerMotionMask;
KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
PointerMotionMask;
EChangeWindowAttributes(EoGetWin(ewin), CWEventMask | CWDontPropagate, &att);
ewin->client.event_mask = EWIN_CLIENT_EVENT_MASK;