plug-ins: fix #10429 Online help not opening

We were using an incorrect parameter name for calling the online help.
Instead of domain-names it is url.
This commit is contained in:
Jacob Boerema 2023-12-03 10:12:55 -05:00
parent d04e4a0b74
commit adb8f9dcbf

View file

@ -332,7 +332,7 @@ help_load_idle (gpointer data)
procedure = gimp_pdb_lookup_procedure (gimp_get_pdb (),
idle_help->procedure);
return_vals = gimp_procedure_run (procedure, "domain-names", uri, NULL);
return_vals = gimp_procedure_run (procedure, "url", uri, NULL);
gimp_value_array_unref (return_vals);
g_free (uri);