diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-09-03 14:48:58 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-09-10 10:07:13 +0200 |
commit | aabcf28a91944c8b8bbe7184cbe417a55845543a (patch) | |
tree | 15257273e49854afce5c8a10bf1873850fab014b /src/lib/elementary/efl_ui_widget_factory.eo | |
parent | 6f4399dbab5cf386d23c16d5f65ccc74590b3f4b (diff) |
efl_ui_factory: split into constructing and building
constructing is called during construction time, building is called
after finalize. This is usefull for theme related properties that can
only be set after the theme is applied, which happens during finalize.
Diffstat (limited to 'src/lib/elementary/efl_ui_widget_factory.eo')
-rw-r--r-- | src/lib/elementary/efl_ui_widget_factory.eo | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_widget_factory.eo b/src/lib/elementary/efl_ui_widget_factory.eo index fdf537c1a7..c1d039f4b9 100644 --- a/src/lib/elementary/efl_ui_widget_factory.eo +++ b/src/lib/elementary/efl_ui_widget_factory.eo | |||
@@ -21,6 +21,7 @@ class @beta Efl.Ui.Widget_Factory extends Efl.Loop_Consumer implements Efl.Ui.Fa | |||
21 | Efl.Ui.Factory.create; | 21 | Efl.Ui.Factory.create; |
22 | Efl.Ui.Factory.release; | 22 | Efl.Ui.Factory.release; |
23 | Efl.Ui.Factory.building; | 23 | Efl.Ui.Factory.building; |
24 | Efl.Ui.Factory.constructing; | ||
24 | Efl.Ui.Property_Bind.property_bind; | 25 | Efl.Ui.Property_Bind.property_bind; |
25 | Efl.Part.part_get; | 26 | Efl.Part.part_get; |
26 | } | 27 | } |