Colorselector: fix wrong object for callback call function

Summary:
When spinner change it's value it should call callbacks for
colorselector but not for spinner.

@fix

Reviewers: raster, reutskiy.v.v, cedric

Reviewed By: reutskiy.v.v, cedric

Subscribers: NikaWhite

Differential Revision: https://phab.enlightenment.org/D2780

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Vitalii Vorobiov 2015-07-28 23:20:19 +02:00 committed by Cedric BAIL
parent ed154ace3b
commit f91bca734c
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ _spinner_changed_cb(void *data,
break;
}
evas_object_data_del(obj, "_changed");
eo_do(obj, eo_event_callback_call(ELM_COLORSELECTOR_EVENT_CHANGED_USER, NULL));
eo_do(parent, eo_event_callback_call(ELM_COLORSELECTOR_EVENT_CHANGED_USER, NULL));
return EINA_TRUE;
}