efl_ui_text_alert_popup: use correct theme klass name

text_alert_popup is not scroll_alert_popup.

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D8364
This commit is contained in:
Yeongjong Lee 2019-03-15 10:52:32 +00:00 committed by Marcel Hollerbach
parent 4949a8f3a7
commit a278e4ea9d
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ _efl_ui_text_alert_popup_efl_object_constructor(Eo *obj,
ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, NULL);
if (!elm_widget_theme_klass_get(obj))
elm_widget_theme_klass_set(obj, "scroll_alert_popup");
elm_widget_theme_klass_set(obj, "text_alert_popup");
obj = efl_constructor(efl_super(obj, MY_CLASS));
efl_canvas_object_type_set(obj, MY_CLASS_NAME);