app: gimp_drawable_transform: place new the tiles at offset_x, offset_y

and not at offset_y, offset_y (typo).
This commit is contained in:
Michael Natterer 2011-03-26 16:50:38 +01:00
parent 647f0ada2a
commit 047d31fa68
1 changed files with 1 additions and 1 deletions

View File

@ -690,7 +690,7 @@ gimp_drawable_transform (GimpItem *item,
if (tiles)
{
gimp_drawable_transform_paste (drawable, tiles,
new_off_y, new_off_y, FALSE);
new_off_x, new_off_y, FALSE);
tile_manager_unref (tiles);
}
}