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_layout_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_layout_factory.eo')
-rw-r--r-- | src/lib/elementary/efl_ui_layout_factory.eo | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_layout_factory.eo b/src/lib/elementary/efl_ui_layout_factory.eo index 0d35d21706..038a33725b 100644 --- a/src/lib/elementary/efl_ui_layout_factory.eo +++ b/src/lib/elementary/efl_ui_layout_factory.eo | |||
@@ -16,6 +16,7 @@ class @beta Efl.Ui.Layout_Factory extends Efl.Ui.Caching_Factory | |||
16 | Efl.Object.constructor; | 16 | Efl.Object.constructor; |
17 | Efl.Object.destructor; | 17 | Efl.Object.destructor; |
18 | Efl.Ui.Factory.building; | 18 | Efl.Ui.Factory.building; |
19 | Efl.Ui.Factory.constructing; | ||
19 | Efl.Ui.Property_Bind.property_bind; | 20 | Efl.Ui.Property_Bind.property_bind; |
20 | Efl.Ui.Factory_Bind.factory_bind; | 21 | Efl.Ui.Factory_Bind.factory_bind; |
21 | } | 22 | } |