From 1ff2b77bc42c274c9a9e213007313ff79a793a20 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 13 Oct 2019 23:12:02 +0100 Subject: [PATCH] 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 --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index c4d403bef..d52ea2bf1 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))