Merge pull request #5473 from scx/custom-editor

Fix launch of custom editor
This commit is contained in:
Beep6581
2019-09-30 12:11:51 +02:00
committed by GitHub

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