I'm trying to change the cursor type for any grayed out menu items.
So, for enabled menu action items, I'd like to have the cursor be pointing hand cursor.
But for disabled menu action (grayed out) items, I'd like to change the cursor to an arrow cursor.
I've connected to QAction::hovered(), and then in the slot for this signal, I set the menu's
cursor appropriately depending on whether the action hovered on is enabled or not.
This does not work. The cursor stays whatever it was before I hover over the menu action.
I've added debug code to make sure that QMenu::setCursor call does get executed.

Any ideas?

Thank you all for any help.

GUI Developer