Revert "ecore_evas x - dont set withdrawn to fals on show but wait for wm state"

This reverts commit 2c736adc87.

well that was totally unexpected. - efl app windows dont show at all..
wtf? this should not have affected that at all..
This commit is contained in:
Carsten Haitzler 2016-10-06 08:53:19 +09:00
parent 2c736adc87
commit 9a2e14faad
1 changed files with 6 additions and 6 deletions

View File

@ -3151,15 +3151,15 @@ _ecore_evas_x_show(Ecore_Evas *ee)
_ecore_evas_x_render(ee);
_ecore_evas_x_sync_set(ee);
_ecore_evas_x_window_profile_set(ee);
if (ee->prop.withdrawn) _ecore_evas_x_hints_update(ee);
if (ee->prop.override)
{
ee->prop.withdrawn = EINA_FALSE;
if (ee->func.fn_state_change) ee->func.fn_state_change(ee);
}
ecore_x_window_show(ee->prop.window);
if (ee->prop.fullscreen)
ecore_x_window_focus(ee->prop.window);
if (ee->prop.withdrawn)
{
ee->prop.withdrawn = EINA_FALSE;
if (ee->func.fn_state_change) ee->func.fn_state_change(ee);
_ecore_evas_x_hints_update(ee);
}
}
static void