raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e288852393d27cadd58f0862758d21bbe6cf24ab
commit e288852393d27cadd58f0862758d21bbe6cf24ab Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Jun 21 11:31:24 2017 +0900 e comp object - stop being cricical where pixmap and win size dont match now i resize some windows and am in a white box of death each time... this is really unfriendly... so downgrade to an err ad this is a recoverable error. --- 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 c02069b28..c81fad531 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -2550,7 +2550,7 @@ _e_comp_smart_resize(Evas_Object *obj, int w, int h) //evas_object_size_hint_min_set(cw->obj, pw, ph); //} if ((ww != pw) || (hh != ph)) - CRI("CW RSZ: %dx%d || PX: %dx%d", ww, hh, pw, ph); + ERR("CW RSZ: %dx%d || PX: %dx%d", ww, hh, pw, ph); } evas_object_resize(cw->effect_obj, w, h); if (cw->zoomobj) e_zoomap_child_resize(cw->zoomobj, pw, ph); --
