I saw that my Skedge plugin crashes Glyphs 3 right on start and spent over an hour trying to debug* until I nailed it down to the from vanilla import...
statement.
So I tried to check for vanilla just in the Macro panel print(vanilla)
or from vanilla import Window
(which recently still worked, as I wrote this in some thread here). The latter shoots Glyphs off directly into the Nirvana even if you use a try:
try:
from vanilla import Window
except:
pass
According to the Plugin Manager it is installed. I also tried to uninstall and reinstall.
*) There’s sth odd happening now when a plugin causes a crash. After the restart, Glyphs asks to remove the plugin. If I cancel, it appears to just not load the plugin, if I click on “remove” it removes it, but that means I have to create my Alias form my WIP plugin again and drop it into the plugins folder. Even with shortcuts this is very tedious and I spend probably 80% of that hour just doing this
What happened?