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

@ -337,7 +337,7 @@ gimp_crop_tool_execute (GimpRectangleTool *rectangle,
else
{
gimp_image_crop (image, GIMP_CONTEXT (options),
x, y, w + x, h + y,
x, y, w, h,
TRUE);
}