When dragging, no need to hide cursor by timer.
Under normal dragging scenario, cursor hide timer is deleted on mouse down.
However, there is a scenario that dragging starts without a preceding mouse
down event. (ex. MultiControl)
This patch fixes this specific scenario.
Please refer to the following commit.
commit
d31eaf38264b9cca65000c8f503698419cd219c5
Change-Id: Id77721aba5fbfe5347d505cbe1c6854be1851f0f
_e_comp_wl_cursor_move_timer_control(comp_wl, ec);
}
}
+ else
+ E_FREE_FUNC(comp_wl->ptr.hide_tmr, ecore_timer_del);
e_pointer_mouse_move(e_comp_pointer_get(), ev->cur.output.x, ev->cur.output.y);
}