disable annoying hover menu when clicking anchors in desktop profile; enforcing a mandatory menu for right clicking was not one of the better ideas we have had

SVN revision: 69509
This commit is contained in:
Mike Blumenkrantz 2012-03-19 16:50:01 +00:00
parent 627ba403ac
commit 2284c041c8
1 changed files with 2 additions and 1 deletions

View File

@ -1857,7 +1857,8 @@ _signal_anchor_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emis
{
evas_object_smart_callback_call(data, SIG_ANCHOR_CLICKED, &ei);
_entry_hover_anchor_clicked(data, data, &ei);
if (!_elm_config->desktop_entry)
_entry_hover_anchor_clicked(data, data, &ei);
}
}