show drag object immediately when beginning a drag

fixes flicker at start of drag
This commit is contained in:
Mike Blumenkrantz 2015-08-04 14:14:27 -04:00
parent 2607ad2339
commit 9669dc1dc5
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ _e_drag_finalize(E_Drag *drag, E_Drag_Type type, int x, int y)
evas_object_move(drag->comp_object, drag->x, drag->y);
evas_object_resize(drag->comp_object, drag->w, drag->h);
drag->visible = 1;
evas_object_show(drag->comp_object);
drag->type = type;
drag->dx = x - drag->x;