summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-09-20 09:04:16 -0400
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-09-23 10:44:32 +0200
commit654e783d28b1a13fd4cf08f5ef0d4a5b171d3a39 (patch)
tree2ff150cd1d990be2960f74cbe8534fa83dc30838
parentaf5f37bd465edaa7eb9b8479df6e08788366447c (diff)
downloadefl-654e783d28b1a13fd4cf08f5ef0d4a5b171d3a39.tar.gz
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 <mail@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D10043
-rw-r--r--src/lib/elementary/efl_ui_layout.c1
1 files changed, 0 insertions, 1 deletions
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;