elm_image: remove the spaces and keep the indentation for elm_image_file_set()

Summary: there are wrong indentation in the elm_image_file_set, so removed the tabs

Reviewers: Jaehyun_Cho

Reviewed By: Jaehyun_Cho

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11988
This commit is contained in:
Taehyub Kim 2020-06-17 21:17:23 +09:00 committed by Jaehyun Cho
parent 9c773ed5cf
commit cd9059d13e
1 changed files with 4 additions and 4 deletions

View File

@ -2461,10 +2461,10 @@ elm_image_file_set(Evas_Object *obj, const char *file, const char *group)
{
const char *cur_group = efl_file_key_get(obj);
if (!(cur_group && group && strcmp(cur_group, group)))
{
if (efl_file_loaded_get(obj)) return EINA_TRUE;
if (_efl_ui_image_is_remote(file)) return EINA_TRUE;
}
{
if (efl_file_loaded_get(obj)) return EINA_TRUE;
if (_efl_ui_image_is_remote(file)) return EINA_TRUE;
}
}
ret = efl_file_simple_load(obj, file, group);