block gadget site layouts on moving gadgets which are not on the pointer site

these will be recalculated correctly once the move operation terminates

fix T6623
This commit is contained in:
Mike Blumenkrantz 2018-01-22 14:18:03 -05:00
parent 08bff48f71
commit 7f649d078b
1 changed files with 4 additions and 1 deletions

View File

@ -936,7 +936,10 @@ _site_layout(Evas_Object *o, Evas_Object_Box_Data *priv EINA_UNUSED, void *data)
if (!zgc->display) continue;
if (zgc->moving)
_site_gadget_resize(zgc->gadget, w, h, &ww, &hh, &ow, &oh);
{
if (zgs->layout != pointer_site) continue;
_site_gadget_resize(zgc->gadget, w, h, &ww, &hh, &ow, &oh);
}
else
{
if (zgc->zone >= 0)