-
Notifications
You must be signed in to change notification settings - Fork 9
Krita
hannesdelbeke edited this page Mar 25, 2023
·
4 revisions
- You can run Python from
Tools/Scripts/Scripter
- To make a Python plugin, see the Krita docs
list all icons in Krita
from PyQt5.QtCore import QDirIterator
it = QDirIterator(":", QDirIterator.Subdirectories)
while it.hasNext():
name = it.next()
if name.endswith(".svg"):
print(name)
krita has an icon browser build in the python dev tools
default qt icons are also available, see Qt TODO figure out and add instructions how to add custom icons
labeled separator & tooltip & icon are not in any of the default Krita menus, but they can be achieved with UniMenu in Krita.
Applications
Dev Docs
Other