From 8d55575bcf72a7b6f4206a673f2341916753fe4c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 26 Sep 2017 12:26:18 -0400 Subject: [PATCH] remove input-only client fastpath to resize crashes ref T6023 --- src/bin/e_comp_object.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index db129a49e..2e37c83e8 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -1740,15 +1740,6 @@ _e_comp_intercept_show_helper(E_Comp_Object *cw) EC_CHANGED(cw->ec); return; } - if (cw->ec->input_only) - { - /* who cares */ - cw->real_hid = 0; - evas_object_move(cw->smart_obj, cw->ec->x, cw->ec->y); - evas_object_resize(cw->smart_obj, cw->ec->w, cw->ec->h); - evas_object_show(cw->smart_obj); - return; - } /* 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))