This reverts commit 60239
I guess the world is not ready for correct min height calculation, too
many things depend on the current behavior. Will re-apply sometime in
the future.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60264
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
(!((Edje_Part_Description_Text *)ep->chosen_description)->text.min_x) &&
(didw)))
{
- if ((ep->part->type == EDJE_PART_TYPE_TEXTBLOCK))
- {
- Evas_Coord tb_mh;
- evas_object_textblock_size_formatted_get(
- ep->object, NULL, &tb_mh);
- tb_mh -= ep->req.h;
- if (tb_mh > h)
- {
- h = tb_mh;
- }
- has_non_fixed_tb = EINA_TRUE;
- }
if (h > maxh)
{
maxh = h;
pep = ep;
}
}
+
+ if (ep->part->type == EDJE_PART_TYPE_TEXTBLOCK)
+ {
+ has_non_fixed_tb = EINA_TRUE;
+ }
}
}
}