only add client to raise stack if focus tracking is enabled

focus tracking only gets frozen by winlist, at which point it's most likely that users also don't want the raise stack to be altered
This commit is contained in:
Mike Blumenkrantz 2014-01-17 17:49:10 -05:00
parent eee5bfea9c
commit c66cdc1416
1 changed files with 2 additions and 1 deletions

View File

@ -1130,7 +1130,8 @@ _e_comp_intercept_raise(void *data, Evas_Object *obj)
else
{
evas_object_stack_below(obj, cw->comp->layers[cw->layer].obj);
e_client_raise_latest_set(cw->ec);
if (e_client_focus_track_enabled())
e_client_raise_latest_set(cw->ec);
}
e_comp_shape_queue(cw->comp);
}