- get the layout node for the position requested, not the current textblock

position


SVN revision: 15644
This commit is contained in:
Dan Sinclair 2005-07-06 01:00:41 +00:00 committed by Dan Sinclair
parent f51d85d87a
commit b1510056a4
1 changed files with 1 additions and 1 deletions

View File

@ -2119,7 +2119,7 @@ evas_object_textblock_char_pos_get(Evas_Object *obj, int pos, Evas_Coord *cx, Ev
MAGIC_CHECK_END();
if (o->format.dirty)
evas_object_textblock_format_calc(obj);
lnode = evas_object_textblock_layout_node_pos_get(obj, o->pos, &ps);
lnode = evas_object_textblock_layout_node_pos_get(obj, pos, &ps);
if (lnode)
{
int ret, x = 0, y = 0, w = 0, h = 0;