This setup is available in "admin/config/user-interface/megamenu" in "Advanced Settings" section.
Bug description:
When modify values only "Menu Timeout" value is used and "Menu Size Wait" and "Menu Hover Wait" are IGNORED.
Solution:
There is wrong code in "megamenu.module":

#25|  $timeout = variable_get('megamenu_menu_timeout',500);
#26|  $sizewait = variable_get('megamenu_menu_timeout',500);
#27|  $hoverwait = variable_get('megamenu_menu_timeout',500);

and should be:

#25|  $timeout = variable_get('megamenu_menu_timeout',500);
#26|  $sizewait = variable_get('megamenu_menu_sizewait',500);
#27|  $hoverwait = variable_get('megamenu_menu_hoverwait',500);

This is mistake in my style. :]
I'm not programmer but Ill try to make a patch.

CommentFileSizeAuthor
#1 advancedsetupignore-1223828-1.patch5.43 KBmattez

Comments

mattez’s picture

StatusFileSize
new5.43 KB

Here in PATCH

mattez’s picture

Status: Needs review » Fixed

It's now FIXED

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Rob_Feature’s picture

Priority: Normal » Major
Status: Closed (fixed) » Needs review

Actually this is not fixed. Let the maintainer mark it as fixed in the module. Current versions of the modules still have this problem. Reopening to alert the maintainer of this patch. Marking as major since it's a core setting that's broken.

Anonymous’s picture

Assigned: Unassigned » erykmynn
Issue tags: +lowhanging
Anonymous’s picture

Status: Needs review » Closed (fixed)

Committed in 7.x-1.x in db3adbc