From 776aa8b5079ca9b6d465aa213757fdba82a58434 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 7 Apr 2011 12:27:35 +0000 Subject: [PATCH] Evas textblock: Add saftey check. SVN revision: 58431 --- legacy/evas/src/lib/canvas/evas_object_textblock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_textblock.c b/legacy/evas/src/lib/canvas/evas_object_textblock.c index 8e3c7816fd..f001a67ead 100644 --- a/legacy/evas/src/lib/canvas/evas_object_textblock.c +++ b/legacy/evas/src/lib/canvas/evas_object_textblock.c @@ -3237,7 +3237,7 @@ _layout_visualize_par(Ctxt *c) /* Skip this paragraph if width is the same, there is no ellipsis * and we aren't just calculating. */ if (!c->par->text_node->new && !c->par->text_node->dirty && - !c->calc_only && !c->width_changed && + !c->calc_only && !c->width_changed && c->par->lines && !c->o->have_ellipsis) { Evas_Object_Textblock_Line *ln;