summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSung-jae Park <nicesj.park@samsung.com>2013-10-14 18:31:03 +0900
committerSung-jae Park <nicesj.park@samsung.com>2013-10-14 18:31:03 +0900
commite701068bf53df44478a9110dd2afeba63c40a0e6 (patch)
tree30a48513a6f54f85cd97cd9c4184fc611914ed80
parentf06e7c02baebf5fcf1ae373e2e5e854eb849d3c6 (diff)
downloadlivebox-edje-e701068bf53df44478a9110dd2afeba63c40a0e6.tar.gz
livebox-edje-e701068bf53df44478a9110dd2afeba63c40a0e6.tar.bz2
livebox-edje-e701068bf53df44478a9110dd2afeba63c40a0e6.zip
Reduce the gap of events
Change-Id: Ic90dd01e20458c4551f4ca1ee2b8eadc90156394
-rw-r--r--src/script_port.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script_port.c b/src/script_port.c
index 386c310..e245898 100644
--- a/src/script_port.c
+++ b/src/script_port.c
@@ -1196,7 +1196,7 @@ PUBLIC int script_feed_event(void *h, Evas *e, int event_type, int x, int y, int
break;
case LB_SCRIPT_MOUSE_UP:
evas_event_feed_mouse_move(e, x, y, timestamp * 1000, NULL);
- evas_event_feed_mouse_up(e, 1, EVAS_BUTTON_NONE, (timestamp + 0.1f) * 1000, NULL);
+ evas_event_feed_mouse_up(e, 1, EVAS_BUTTON_NONE, (timestamp + 0.01f) * 1000, NULL);
break;
case LB_SCRIPT_MOUSE_IN:
evas_event_feed_mouse_in(e, timestamp * 1000, NULL);