do not reset previously-set ec->placed state when attempting early client moves

This commit is contained in:
Mike Blumenkrantz 2016-03-31 14:03:56 -04:00
parent 53c6b3ca19
commit c529764660
1 changed files with 2 additions and 1 deletions

View File

@ -1048,7 +1048,8 @@ _e_comp_intercept_move(void *data, Evas_Object *obj, int x, int y)
if (cw->ec->new_client)
{
/* don't actually do anything until first client idler loop */
cw->ec->placed = ((!cw->ec->dialog) && (!cw->ec->parent));
if (!cw->ec->placed)
cw->ec->placed = ((!cw->ec->dialog) && (!cw->ec->parent));
cw->ec->changes.pos = 1;
EC_CHANGED(cw->ec);
}