I've inherited a Qt project that had themed right-click menus (which look really weird on macOS). I removed the setStyleSheet() call from the QMenu, yet it still highlights only the text instead of the item's background and uses weird font sizes.
Is there any other place in a Qt app where someone could have set colors that the menu would somehow inherit?
The menu is shown via exec(), and the QMenu and QActions are created with a QWidget as their parent, in case that helps.