efl_ui_scroll : fix scroll bar size visibility issue in efl_ui_list

Summary :
mostly, bar-related event callback will be registered after
scroll manager creation, so in scroll manager constructor,
visibility_update cannot update their visiblity properly.
This commit is contained in:
SangHyeon Lee 2017-12-20 15:25:32 +09:00
parent c2a5ee65d5
commit a99941d24f
1 changed files with 3 additions and 1 deletions

View File

@ -2460,7 +2460,9 @@ _efl_ui_scroll_manager_efl_object_constructor(Eo *obj, Efl_Ui_Scroll_Manager_Dat
_scroll_event_object_attach(obj);
efl_ui_scrollbar_bar_visibility_update(sd->obj);
//FIXME : mostly bar-related callback is added after scroll manager creation,
// so when constructor of manager is called, callback is not registered.
//efl_ui_scrollbar_bar_visibility_update(sd->obj);
return obj;
}