Centos 7/Gnome Applications menu items don’t respond

centosgnomemenu

I have CentOS 7 installed with gnome. After some uptime, no items under the 'Applications' menu respond.* I can open the menus and submenus and hover over items with the mouse pointer. They will highlight correctly, but they do not respond to clicks.

The items also do not respond to keyboard navigation where I can still use the arrow keys to move around the menus and highlight items, but hitting enter etc. does not launch the application/tool highlighted.

Restarting the machine helps, but that seems a heavy handed solution to the problem.

*With the exception of the 'Activities Overview' item

Best Answer

This is a known issue. See here:

apps-menu: Exception: can't convert event.get_time() to an integer #7

A fix is to change line 77 of /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js

from:

this._app.open_new_window(event.get_time());

to:

this._app.open_new_window(-1);
Related Question