Hello,
would it be possible to make Export to run in background, not blocking the Interface?
Thanks,
Hello,
would it be possible to make Export to run in background, not blocking the Interface?
Thanks,
Hi Jan - This can be done simply with a script (from the python docs):
exportFolder = 'path/to/dir’
for i in Glyphs.font.instances:
i.generate(FontPath = exportFolder)
That way you don’t even need a notification, though it may be good to set them up so you get warned if it doesn’t export for some reason (features etc).
I disagree; it should be part of the UI because
To make the asynchronous export safe, I need to change a lot internally. That change is on my list already but I can’t promise anything.