mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
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:
parent
d04e4a0b74
commit
adb8f9dcbf
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue