cosmetics.

2007-07-30  Sven Neumann  <sven@gimp.org>

	* app/core/gimpimage.c (gimp_image_drawable_update): cosmetics.


svn path=/trunk/; revision=23066
This commit is contained in:
Sven Neumann 2007-07-30 07:04:22 +00:00 committed by Sven Neumann
parent ca076bb8ba
commit c5e8bef567
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2007-07-30 Sven Neumann <sven@gimp.org>
* app/core/gimpimage.c (gimp_image_drawable_update): cosmetics.
2007-07-29 Sven Neumann <sven@gimp.org>
* app/file/file-open.c

View File

@ -1176,10 +1176,8 @@ gimp_image_drawable_update (GimpDrawable *drawable,
gint offset_y;
gimp_item_offsets (item, &offset_x, &offset_y);
x += offset_x;
y += offset_y;
gimp_image_update (image, x, y, width, height);
gimp_image_update (image, x + offset_x, y + offset_y, width, height);
}
}