block comp show events for comp wins with borders -- these get handled by the border show event

This commit is contained in:
Mike Blumenkrantz 2013-06-24 10:07:30 +01:00
parent 30b83c7820
commit 32999cfe08
1 changed files with 1 additions and 1 deletions

View File

@ -3009,7 +3009,7 @@ _e_comp_show(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
if (cw->free_shape) _e_comp_win_shape_create(cw, cw->x, cw->y, cw->w, cw->h);
}
cw->defer_hide = 0;
if (cw->visible) return ECORE_CALLBACK_PASS_ON;
if (cw->visible || cw->bd) return ECORE_CALLBACK_PASS_ON;
_e_comp_win_show(cw);
return ECORE_CALLBACK_PASS_ON;
}