From 18f1604ccc352a464b4468fa09470de1751576e6 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Fri, 10 Nov 2006 15:01:25 +0000 Subject: [PATCH] vincent spotted these. fixed :) SVN revision: 27035 --- legacy/ecore/src/lib/ecore_x/ecore_x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_x/ecore_x.c b/legacy/ecore/src/lib/ecore_x/ecore_x.c index 2f9d0c210e..7f80c870d8 100644 --- a/legacy/ecore/src/lib/ecore_x/ecore_x.c +++ b/legacy/ecore/src/lib/ecore_x/ecore_x.c @@ -1103,10 +1103,10 @@ ecore_x_window_attributes_get(Ecore_X_Window win, Ecore_X_Window_Attributes *att if (att.class == InputOnly) att_ret->input_only = 1; if (att.save_under) att_ret->save_under = 1; att_ret->event_mask.mine = att.your_event_mask; - att_ret->event_mask.all = att.your_event_mask; + att_ret->event_mask.all = att.all_event_masks; att_ret->event_mask.no_propagate = att.do_not_propagate_mask; att_ret->window_gravity = att.win_gravity; - att_ret->pixel_gravity = att.win_gravity; + att_ret->pixel_gravity = att.bit_gravity; att_ret->colormap = att.colormap; att_ret->visual = att.visual; return 1;