Fix launch of custom editor

Fixes Beep6581/RawTherapee#5472
This commit is contained in:
scx
2019-09-26 04:21:28 +02:00
parent 6026c110fa
commit ca42b7b726

View File

@@ -334,7 +334,7 @@ bool ExtProgStore::openInCustomEditor (const Glib::ustring& fileName)
#else
const auto cmdLine = Glib::ustring("\"") + options.customEditorProg + "\" " + Glib::shell_quote(fileName);
const auto cmdLine = options.customEditorProg + Glib::ustring(" ") + Glib::shell_quote(fileName);
return spawnCommandAsync (cmdLine);
#endif