Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
4.6.0
-
None
-
MinGW 4.4.1
Qt 4.6.0 official
Windows XP and Windows 7
Description
Create a QPushButton, attach a menu to it. When the button is clicked on, the menu is invisible.
Example:
QPushButton *button = new QPushButton;
QMenu *menu = new QMenu;
menu->addAction("Test");
button->SetMenu(menu);
You can still click on the option, and when you do it shows up and works as expected. Not a huge deal, just thought I'd mention it.
If you have trouble reproducing this, please let me know and I'll make a full test case + program.