bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=31a96be9a28fc8086d6e617a66b5d786b2ecb8ce

commit 31a96be9a28fc8086d6e617a66b5d786b2ecb8ce
Author: Ali Alzyod <[email protected]>
Date:   Thu Jan 2 10:00:35 2020 +0000

    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 <[email protected]>
    Differential Revision: https://phab.enlightenment.org/D11003
---
 src/lib/elementary/efl_ui_textbox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/efl_ui_textbox.c 
b/src/lib/elementary/efl_ui_textbox.c
index c3bbf688b7..a36faf29b8 100644
--- a/src/lib/elementary/efl_ui_textbox.c
+++ b/src/lib/elementary/efl_ui_textbox.c
@@ -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);

-- 


Reply via email to