comp show helper - make it a non-critical err

this stops an abort which is better for the user experience and is
recoverable.

fixes T8318
This commit is contained in:
Carsten Haitzler 2019-10-13 23:12:02 +01:00
parent cbd98fafb0
commit 1ff2b77bc4
1 changed files with 1 additions and 1 deletions

View File

@ -1696,7 +1696,7 @@ _e_comp_intercept_show_helper(E_Comp_Object *cw)
/* ensure that some kind of frame calc has occurred if there's a frame */
if (e_pixmap_is_x(cw->ec->pixmap) && cw->frame_object &&
(cw->ec->h == cw->ec->client.h) && (cw->ec->w == cw->ec->client.w))
CRI("ACK!");
ERR("Frame calc hasn't happened");
/* force resize in case it hasn't happened yet, or just to update size */
evas_object_resize(cw->smart_obj, cw->ec->w, cw->ec->h);
if ((cw->w < 1) || (cw->h < 1))