raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=1ff2b77bc42c274c9a9e213007313ff79a793a20

commit 1ff2b77bc42c274c9a9e213007313ff79a793a20
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Sun Oct 13 23:12:02 2019 +0100

    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))

-- 


Reply via email to