app: change gimp_image_crop() to use x, y, width, height

This commit is contained in:
Michael Natterer
2015-07-03 18:56:59 +02:00
parent 33d7b6005e
commit d6c578c567
8 changed files with 34 additions and 38 deletions

View File

@ -197,7 +197,7 @@ image_crop_invoker (GimpProcedure *procedure,
success = FALSE;
else
gimp_image_crop (image, context,
offx, offy, offx + new_width, offy + new_height,
offx, offy, new_width, new_height,
TRUE);
}