bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5a698b6a3d06a7a5a0a2a9a9571cd88222e26c8a
commit 5a698b6a3d06a7a5a0a2a9a9571cd88222e26c8a Author: Alastair Poole <nets...@gmail.com> Date: Thu Jul 11 10:36:31 2019 +0000 ELM_CODE: Fix for theming of widget. Change inhertitence for object so we can use themes with elm_code. Reviewed-by: Marcel Hollerbach <m...@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D9279 --- src/lib/elementary/elm_code_widget.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_code_widget.eo b/src/lib/elementary/elm_code_widget.eo index a9d561423d..bb24d1b9fb 100644 --- a/src/lib/elementary/elm_code_widget.eo +++ b/src/lib/elementary/elm_code_widget.eo @@ -15,7 +15,7 @@ enum @beta Elm.Code_Widget_Scroller_Policy struct @extern Elm.Code; [[Elementary code main data structure]] /* The main interface currently defined in code */ struct @extern Elm.Code_Line; [[Elementary code line data structure]] /* Parts of the interface currently defined in code */ -class @beta Elm.Code_Widget extends Efl.Ui.Layout_Base +class @beta Elm.Code_Widget extends Efl.Ui.Layout { [[Elementary code widget]] c_prefix: efl_ui_code_widget; --