Details
-
Bug
-
Resolution: Cannot Reproduce
-
P3: Somewhat important
-
4.3.3
-
None
Description
Having a submenu in a menubar that has an accelerator renders with the menu indicator on top of the the shortcut.
To reproduce
run this example
open menu
notice that the little triangle on top of the accelerator.
#include <QtGui>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = 0)
: QMainWindow(parent)
public slots:
};
#include "main.moc"
int main(int argc, char **argv)
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}