efl.ui.textbox: replace legacy scroller type check

replace legacy scroller type check ELM_INTERFACE_SCROLLABLE_MIXIN with EFL_UI_SCROLLABLE_INTERFACE

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11003
This commit is contained in:
Ali Alzyod 2020-01-02 10:00:35 +00:00 committed by Marcel Hollerbach
parent 278376df90
commit 31a96be9a2
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ _viewport_region_get(Evas_Object *obj)
parent = efl_ui_widget_parent_get(obj);
while (parent)
{
if (efl_isa(parent, ELM_INTERFACE_SCROLLABLE_MIXIN))
if (efl_isa(parent, EFL_UI_SCROLLABLE_INTERFACE))
{
Eina_Rectangle r;
EINA_RECTANGLE_SET(&r, 0, 0, 0, 0);