-
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
When attempting to launch a third party program to edit svg files on macOS, the argument containing the path of the file is malformed.
It does not contain a leading "/" and contains quotes, so instead of being "/path.svg" it is ""path.svg"" which leads nowhere.
I did a (very) ugly fix to get it to open affinity on my machine, maybe it can help you pinpoint the problem.
The "SVG editor executables" field points to a shell script containing this :
#!/bin/bash
open "/"`echo $1 | sed s/\"//g`
I hope that I was clear enough it's been a while since my last bug report π
BTW your soft is absolutely awesome <3
Reactions are currently unavailable