fix link detection when hover the h in ttp:/…

When the separator in the left is found, we may only have ' ht' so far.
This commit is contained in:
Boris Faure 2013-06-02 18:52:28 +02:00
parent 64f4ece250
commit 21cd9d5cec
1 changed files with 1 additions and 10 deletions

View File

@ -150,20 +150,11 @@ _termio_link_find(Evas_Object *obj, int cx, int cy,
goback = EINA_FALSE;
coord_forward(&x1, &y1, w, h);
}
else if (len > 2 && strchr((s + 2), '@'))
else
{
goback = EINA_FALSE;
coord_forward(&x1, &y1, w, h);
}
else if (s[0] == '=')
{
}
else
{
free(s);
s = NULL;
break;
}
}
}
if (goforward)