Summary:
Fix issue where **_entry_has_new_line** will not detect '<br>' or '<ps>' inside markup text as new lines indicators.
this functionlity effect following public function:
**elm_entry_single_line_set()**
Reviewers: woohyun, bowonryu, ManMower, cedric, raster, segfaultxavi
Reviewed By: bowonryu, segfaultxavi
Subscribers: segfaultxavi, cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D8323
{
if (!strncmp(text, "<br", 3) || !strncmp(text, "<ps", 3))
{
- if (text[4] == '>' || ((text[4] == '/') && (text[5] == '>')))
+ if (text[3] == '>' || ((text[3] == '/') && (text[4] == '>')))
{
return EINA_TRUE;
}