edc_parser: Fix max value of mouse_events from 1000 to 1

Summary:
Fix max value of mouse_events from 1000 to 1
         @fix

Reviewers: Hermet

Reviewed By: Hermet

Differential Revision: https://phab.enlightenment.org/D1727
This commit is contained in:
Jaehyun Cho 2014-12-03 11:56:25 +09:00 committed by ChunEon Park
parent 02181a9f21
commit 84fa8a957b
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ type_init_thread_blocking(void *data, Ecore_Thread *thread EINA_UNUSED)
memset(&attr, 0x00, sizeof(parser_attr));
attr.keyword = eina_stringshare_add("mouse_events:");
attr.value.min = 0;
attr.value.max = 1000;
attr.value.max = 1;
attr.value.type = ATTR_VALUE_INTEGER;
eina_inarray_push(td->attrs, &attr);