diff --git a/ChangeLog b/ChangeLog index 809db15352..6b311a1a39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-07-20 Sven Neumann + + * app/tools/gimprectangletool.c: fixed a gtk-doc comment. + 2007-07-20 Sven Neumann * app/menus/menus.c (menus_clear): overwrite the menurc with the diff --git a/NEWS b/NEWS index e5998ff72c..1aff4ef075 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,21 @@ This is the development branch of GIMP. Here's where all the shiny new stuff is being done that will one day be released as GIMP 2.4. +Changes in GIMP 2.3.19 +====================== + +- support long layer names in PSD files +- improved EXIF handling in the JPEG file plug-in +- added control for the playback speed in the Animation Playback plug-in +- avoid needless image preview invalidation +- allow to edit the image comment in the Image Properties dialog +- further improved rectangle tools +- made JPEG save parameters user-configurable +- avoid color conversions between identical ICC color profiles +- improved Print plug-in +- bug fixes and code cleanup + + Changes in GIMP 2.3.18 ====================== diff --git a/app/tools/gimprectangletool.c b/app/tools/gimprectangletool.c index ea72f99764..0978cef77b 100644 --- a/app/tools/gimprectangletool.c +++ b/app/tools/gimprectangletool.c @@ -1031,10 +1031,11 @@ gimp_rectangle_tool_active_modifier_key (GimpTool *tool, } else if (state & GDK_BUTTON1_MASK) { - /* If we are leaving fixed_center mode we want to set the "other side" - * where it should be. Don't do anything if we came here by a mouse-click - * though, since then the user has confirmed the shape and we don't want - * to modify it afterwards. + /* If we are leaving fixed_center mode we want to set the + * "other side" where it should be. Don't do anything if we + * came here by a mouse-click though, since then the user + * has confirmed the shape and we don't want to modify it + * afterwards. */ gimp_rectangle_tool_set_other_side_coord (rectangle, private->other_side_x, @@ -1693,10 +1694,10 @@ gimp_rectangle_tool_update_handle_sizes (GimpRectangleTool *rectangle) /** * gimp_rectangle_tool_scale_has_changed: - * rectangle_tool: A #GimpRectangleTool. + * @rectangle_tool: A #GimpRectangleTool. * - * Returns true if the scale that was used to calculate handle sizes is not the - * same as the current shell scale. + * Returns %TRUE if the scale that was used to calculate handle sizes + * is not the same as the current shell scale. */ static gboolean gimp_rectangle_tool_scale_has_changed (GimpRectangleTool *rectangle_tool)