From: Bluezery <ohpowel@gmail.com>

Subject: [E-devel]  [Patch][elm_map] Fix mouse down event propagation

It's simple bug fix for propagate mouse down event via long press
event properly.



SVN revision: 66503
This commit is contained in:
Bluezery 2011-12-26 03:50:33 +00:00 committed by Carsten Haitzler
parent 77d0c1f015
commit 6e25241d32
1 changed files with 1 additions and 0 deletions

View File

@ -1609,6 +1609,7 @@ _mouse_down(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void
else
evas_object_smart_callback_call(data, SIG_PRESS, ev);
if (wd->long_timer) ecore_timer_del(wd->long_timer);
wd->ev = *ev;
wd->long_timer = ecore_timer_add(_elm_config->longpress_timeout, _long_press, data);
}