only show x11 clients during MapNotify/Request if they have Normal state

This commit is contained in:
Mike Blumenkrantz 2015-12-17 11:56:10 -05:00
parent c0860135ac
commit 3ce74544fd
1 changed files with 1 additions and 1 deletions

View File

@ -1323,7 +1323,7 @@ _e_comp_x_show_helper(E_Client *ec)
evas_object_hide(ec->frame);
e_comp_object_damage(ec->frame, 0, 0, ec->w, ec->h);
}
else if (ec->icccm.state != ECORE_X_WINDOW_STATE_HINT_WITHDRAWN)
else if (ec->icccm.state == ECORE_X_WINDOW_STATE_HINT_NORMAL)
evas_object_show(ec->frame);
_e_comp_x_client_data_get(ec)->first_map = 1;
if (ec->internal_elm_win)