bugfix: ibar now scrolls correctly during drags

fix T794
This commit is contained in:
Mike Blumenkrantz 2014-03-28 09:32:51 -04:00
parent ff874b128a
commit 32e928b55b
1 changed files with 3 additions and 1 deletions

View File

@ -1935,11 +1935,13 @@ _ibar_inst_cb_move(void *data, const char *type __UNUSED__, void *event_info)
{
E_Event_Dnd_Move *ev;
Instance *inst;
int x, y;
ev = event_info;
inst = data;
_ibar_drop_position_update(inst, ev->x, ev->y);
e_gadcon_client_autoscroll_update(inst->gcc, ev->x, ev->y);
evas_object_geometry_get(inst->ibar->o_outerbox, &x, &y, NULL, NULL);
e_gadcon_client_autoscroll_update(inst->gcc, ev->x - x, ev->y - y);
}
static void