elm_popup: calculate the label min size of popup before the popup group calculation

Summary:
consider the label min width size before the popup group calculation
@fix

Test Plan: 1. run elementary_test popup

Reviewers: Jaehyun_Cho, woohyun

Reviewed By: Jaehyun_Cho

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9818
This commit is contained in:
Taehyub Kim 2019-09-03 19:47:01 +09:00 committed by Jaehyun Cho
parent d1dbb791e8
commit 10a5d83e83
1 changed files with 4 additions and 1 deletions

View File

@ -1039,8 +1039,11 @@ _content_text_set(Evas_Object *obj,
evas_object_event_callback_add
(sd->text_content_obj, EVAS_CALLBACK_DEL, _on_text_content_del, obj);
elm_label_line_wrap_set(sd->text_content_obj, sd->content_text_wrap_type);
elm_label_line_wrap_set(sd->text_content_obj, ELM_WRAP_NONE);
elm_object_text_set(sd->text_content_obj, text);
efl_canvas_group_calculate(sd->text_content_obj);
elm_label_line_wrap_set(sd->text_content_obj, sd->content_text_wrap_type);
evas_object_size_hint_weight_set
(sd->text_content_obj, EVAS_HINT_EXPAND, 0.0);
evas_object_size_hint_align_set