fix submenu visibility during scroll

sometimes while quickly moving the cursor through menu items with submenus
the visibility flag would toggle more quickly than the menu object's visibility.
this is no longer the case
This commit is contained in:
Mike Blumenkrantz 2015-04-20 18:08:07 -04:00
parent 87bed22bf5
commit 12d6cf8f3b
1 changed files with 1 additions and 1 deletions

View File

@ -1163,7 +1163,7 @@ e_menu_idler_before(void)
{
if (m->frozen) continue;
if (!m->realized) continue;
if ((m->cur.visible) && (!m->prev.visible))
if (m->cur.visible)
{
m->prev.visible = m->cur.visible;
evas_object_pass_events_set(m->comp_object, 0);