I remember having Icons on my context menus all around Krita. Since I moved from KDE Plasma it seems I’m unable to get icons on the menus no matter my desktop environment configuration.
I think I read somewhere that these were disabled by default unless Krita run on KDE Plasma, but is there a way to enable them? If not, what’s the reason for this?. I really miss having them and I think having icons would greatly benefit the UX
You can first test if following script will back missing icons (just copy & paste following to Krita’s Scripter and Run).
If it works, script can be turned to tiny plugin that gets run each time Krita starts.
from PyQt5.QtCore import Qt, QCoreApplication
QCoreApplication.setAttribute(Qt.AA_DontShowIconsInMenus, False)