bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=654e783d28b1a13fd4cf08f5ef0d4a5b171d3a39

commit 654e783d28b1a13fd4cf08f5ef0d4a5b171d3a39
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Fri Sep 20 09:04:16 2019 -0400

    elm/layout: remove check for finalize in efl_canvas_group_change impl
    
    this used to be a thing in order to prevent widgets from spamming themselves
    with recalcs during construction, but since that's no longer possible we
    can remove this and also resolve an issue where legacy widgets failed
    to correctly calculate their min size if no text was set
    
    Reviewed-by: Marcel Hollerbach <m...@marcel-hollerbach.de>
    Differential Revision: https://phab.enlightenment.org/D10043
---
 src/lib/elementary/efl_ui_layout.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/lib/elementary/efl_ui_layout.c 
b/src/lib/elementary/efl_ui_layout.c
index ed730a920f..98f731fdea 100644
--- a/src/lib/elementary/efl_ui_layout.c
+++ b/src/lib/elementary/efl_ui_layout.c
@@ -1801,7 +1801,6 @@ _elm_layout_efl_canvas_group_change(Eo *obj, 
Elm_Layout_Data *ld)
 {
    Efl_Ui_Layout_Data *sd;
 
-   if (!efl_finalized_get(obj)) return;
    sd = efl_data_scope_safe_get(obj, EFL_UI_LAYOUT_BASE_CLASS);
    EINA_SAFETY_ON_NULL_RETURN(sd);
    if (sd->frozen) return;

-- 


Reply via email to