Kaydet (Commit) 6c753e59 authored tarafından Colomban Wendling's avatar Colomban Wendling

filebrowser: Use Spawn module to launch the external command

This makes the command syntax consistent with other
Geany ones and more native on Windows.
üst 05f35ed6
......@@ -477,7 +477,7 @@ static void open_external(const gchar *fname, gboolean dir_found)
cmd = g_string_free(cmd_str, FALSE);
locale_cmd = utils_get_locale_from_utf8(cmd);
if (! g_spawn_command_line_async(locale_cmd, &error))
if (! spawn_async(NULL, locale_cmd, NULL, NULL, NULL, &error))
{
gchar *c = strchr(cmd, ' ');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment