Hi, I can't find how to change the size of icons in QMenu. I don't see any method like "setIconSize()" for QMenu. Simple code:

action = new QAction(icon, "Settings", this);
menu->addAction(action);

All icons that I create like this appear in the menu in small size (a bit smaller than in all other programs). Is it possible somehow to increase the size of icons? I use *.svg and *.png icons of different sizes from 48x48 to 128x128, but when my program runs, all icons have the same default and small size.

Thank you!