Skip to content

Commit

Permalink
Fix invalid parameter name output target
Browse files Browse the repository at this point in the history
Parameters containing spaces are invalid. A commit for GIMP that makes
this less critical is already proposed
https://gitlab.gnome.org/GNOME/gimp/-/commit/1af8ad8905352de95bb827beb488aed8997cad71

Fixes carlobaldassi#3
  • Loading branch information
koiuo committed Mar 31, 2020
1 parent 3590a1e commit 8600fa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static GimpParamDef args[] = {
{GIMP_PDB_INT32, "resize_aux_layers",
"Whether to resize auxiliary layers"},
{GIMP_PDB_INT32, "resize_canvas", "Whether to resize canvas"},
{GIMP_PDB_INT32, "output target", "Output target (same layer, new layer, new image)"},
{GIMP_PDB_INT32, "output_target", "Output target (same layer, new layer, new image)"},
{GIMP_PDB_INT32, "seams", "Whether to output the seam map"},
{GIMP_PDB_INT32, "nrg_func", "Energy function to use"},
{GIMP_PDB_INT32, "res_order", "Resize order"},
Expand Down

0 comments on commit 8600fa6

Please sign in to comment.