how can i set an Icon for a QAction in QMenu through Stylesheet?
for example:
QMenu* menu = new QMenu();
QAction* action1= new QAction();
QACtion* action2= new QAction();
menu->addAction(action1);
menu->addAction(action2);
now i want to set different icon for action1 and action2 with QT Stylesheet.
Is it possible with Stylesheet?