I have a problem where the icons used on QToolButtons on the QMenu attached to the QToolButton appear blurry. I have tried different sizes 24x24, 32x32, 64x64, different formats like png and svg but it always looks strange.
On the image you can see the selected action and the top action on the menu have the same icon but the one in the menu is blurry. Even the one selected is not really sharp.
Is there some specific guideline for those icons or what am I doing wrong? The second and third icon is a build in icon which is I believe 24x24 svg but I was not able to reproduce.

view-fullscreensvg24x24image from github.com/KDE/breeze-icons/blob/master/icons/actions/24/… and loaded it directly and it was blurry too. So basically loading icon likeQIcon::fromTheme( "view-fullscreen" )is not blurry and loading it likeQIcon(":/currentWindow.svg")is blurry. Am I maybe loading it wrong? - Damir PorobicQIcon::fromTheme( "view-fullscreen" )actually can return 3 different sizes16x16,22x22and24x24. I'll try to figure out today if I can set three different sizes in the resource file and just providing the same alias for all three of them. - Damir Porobic