Evas textblock: Fixed a typo in the wordwrap code.

SVN revision: 56526
This commit is contained in:
Tom Hacohen 2011-01-30 10:44:11 +00:00
parent ae1325aec0
commit 8871470af7
1 changed files with 1 additions and 1 deletions

View File

@ -3132,7 +3132,7 @@ _layout_get_word_mixwrap_common(Ctxt *c, Evas_Object_Textblock_Format *fmt,
if (wrap >= 0)
return (str[wrap]) ? wrap : -1;
else if (twrap >= 0)
return (str[twrap]) ? wrap : -1;
return (str[twrap]) ? twrap : -1;
}
}
return -1;