summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-10-13 23:12:02 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-10-13 23:12:02 +0100
commit1ff2b77bc42c274c9a9e213007313ff79a793a20 (patch)
tree4297ebafe8640917634961fc0a62b657a36cefda
parentcbd98fafb07ef195b8f2c0593543c6278ce7483e (diff)
downloadenlightenment-1ff2b77bc42c274c9a9e213007313ff79a793a20.tar.gz
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
-rw-r--r--src/bin/e_comp_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index c4d403bef6..d52ea2bf13 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -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))