ignore withdrawn state for x11 override clients during show

these windows are already visible
This commit is contained in:
Mike Blumenkrantz 2015-12-18 13:58:48 -05:00
parent 5f323aa1f9
commit 75fbc4361d
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_NORMAL)
else if (ec->override || (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)