From ede2faa1aa941080719f9dbb12ef41615e0ed719 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Thu, 10 Jan 2013 11:53:07 +0000 Subject: [PATCH] oh and also fix up properties to not update until event comes back from x telling us they did. :) SVN revision: 82558 --- src/modules/ecore_evas/engines/x/ecore_evas_x.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/ecore_evas/engines/x/ecore_evas_x.c b/src/modules/ecore_evas/engines/x/ecore_evas_x.c index 1bab8de650..2663fb2c3e 100644 --- a/src/modules/ecore_evas/engines/x/ecore_evas_x.c +++ b/src/modules/ecore_evas/engines/x/ecore_evas_x.c @@ -2672,7 +2672,7 @@ static void _ecore_evas_x_withdrawn_set(Ecore_Evas *ee, int withdrawn) { if (ee->prop.withdrawn == withdrawn) return; - ee->prop.withdrawn = withdrawn; +// ee->prop.withdrawn = withdrawn; _ecore_evas_x_hints_update(ee); if (withdrawn) ecore_evas_hide(ee); @@ -2692,7 +2692,7 @@ _ecore_evas_x_sticky_set(Ecore_Evas *ee, int sticky) * property change event. * ee->prop.sticky = sticky; */ - edata->state.sticky = sticky; +// edata->state.sticky = sticky; if (ee->should_be_visible) ecore_x_netwm_state_request_send(ee->prop.window, edata->win_root, ECORE_X_WINDOW_STATE_STICKY, -1, sticky); @@ -2762,7 +2762,7 @@ _ecore_evas_x_maximized_set(Ecore_Evas *ee, int on) if (ee->prop.maximized == on) return; edata->state.maximized_h = 1; edata->state.maximized_v = 1; - ee->prop.maximized = on; +// ee->prop.maximized = on; if (ee->should_be_visible) { ecore_x_netwm_state_request_send(ee->prop.window, edata->win_root,