SVN revision: 14340
This commit is contained in:
sebastid 2005-04-25 08:26:48 +00:00 committed by sebastid
parent 36a904a439
commit b732a2b903
1 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ ecore_x_window_new(Ecore_X_Window parent, int x, int y, int w, int h)
attr.border_pixel = 0;
attr.background_pixmap = None;
attr.save_under = False;
attr.do_not_propagate_mask = True;
attr.do_not_propagate_mask = ~NoEventMask;
attr.event_mask = KeyPressMask |
KeyReleaseMask |
ButtonPressMask |
@ -94,7 +94,7 @@ ecore_x_window_override_new(Ecore_X_Window parent, int x, int y, int w, int h)
attr.border_pixel = 0;
attr.background_pixmap = None;
attr.save_under = False;
attr.do_not_propagate_mask = True;
attr.do_not_propagate_mask = ~NoEventMask;
attr.event_mask = KeyPressMask |
KeyReleaseMask |
ButtonPressMask |
@ -146,7 +146,7 @@ ecore_x_window_input_new(Ecore_X_Window parent, int x, int y, int w, int h)
if (parent == 0) parent = DefaultRootWindow(_ecore_x_disp);
attr.override_redirect = True;
attr.do_not_propagate_mask = True;
attr.do_not_propagate_mask = ~NoEventMask;
attr.event_mask = KeyPressMask |
KeyReleaseMask |
ButtonPressMask |