render queue and flag geometry update on border resize event to catch shading animations

This commit is contained in:
Mike Blumenkrantz 2013-04-18 12:53:13 +01:00
parent 1071bd9020
commit 9aa32ad327
1 changed files with 2 additions and 1 deletions

View File

@ -3471,7 +3471,8 @@ _e_comp_bd_resize(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
E_Event_Border_Resize *ev = event;
E_Comp_Win *cw = _e_comp_win_find(ev->border->win);
if (!cw) return ECORE_CALLBACK_PASS_ON;
// fimxe: do resize here instead of conf notify
cw->geom_update = 1;
_e_comp_win_render_queue(cw);
return ECORE_CALLBACK_PASS_ON;
}