Quote Originally Posted by febil View Post
Is it possible to remove the selection and focus of a menu item in QMenuBar? I need to remove the selection after clicking on a menu item. That is after clicking on a menu item, it should not be possible to navigate to the next menu item during mouse move.
Thanks in advance for the assistance.
Every menu item is considered a QAction type which emits a signal triggered(). In a slot connected to this signal, you can enable/disable the 2nd menu you mention, thus creating the required functionality.