fixed a gtk-doc comment.
2007-07-20 Sven Neumann <sven@gimp.org> * app/tools/gimprectangletool.c: fixed a gtk-doc comment. svn path=/trunk/; revision=22966
This commit is contained in:

committed by
Sven Neumann

parent
6a81003fbd
commit
e2b9c20b43
@ -1,3 +1,7 @@
|
|||||||
|
2007-07-20 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/tools/gimprectangletool.c: fixed a gtk-doc comment.
|
||||||
|
|
||||||
2007-07-20 Sven Neumann <sven@gimp.org>
|
2007-07-20 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/menus/menus.c (menus_clear): overwrite the menurc with the
|
* app/menus/menus.c (menus_clear): overwrite the menurc with the
|
||||||
|
15
NEWS
15
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.
|
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
|
Changes in GIMP 2.3.18
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -1031,10 +1031,11 @@ gimp_rectangle_tool_active_modifier_key (GimpTool *tool,
|
|||||||
}
|
}
|
||||||
else if (state & GDK_BUTTON1_MASK)
|
else if (state & GDK_BUTTON1_MASK)
|
||||||
{
|
{
|
||||||
/* If we are leaving fixed_center mode we want to set the "other side"
|
/* If we are leaving fixed_center mode we want to set the
|
||||||
* where it should be. Don't do anything if we came here by a mouse-click
|
* "other side" where it should be. Don't do anything if we
|
||||||
* though, since then the user has confirmed the shape and we don't want
|
* came here by a mouse-click though, since then the user
|
||||||
* to modify it afterwards.
|
* has confirmed the shape and we don't want to modify it
|
||||||
|
* afterwards.
|
||||||
*/
|
*/
|
||||||
gimp_rectangle_tool_set_other_side_coord (rectangle,
|
gimp_rectangle_tool_set_other_side_coord (rectangle,
|
||||||
private->other_side_x,
|
private->other_side_x,
|
||||||
@ -1693,10 +1694,10 @@ gimp_rectangle_tool_update_handle_sizes (GimpRectangleTool *rectangle)
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* gimp_rectangle_tool_scale_has_changed:
|
* 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
|
* Returns %TRUE if the scale that was used to calculate handle sizes
|
||||||
* same as the current shell scale.
|
* is not the same as the current shell scale.
|
||||||
*/
|
*/
|
||||||
static gboolean
|
static gboolean
|
||||||
gimp_rectangle_tool_scale_has_changed (GimpRectangleTool *rectangle_tool)
|
gimp_rectangle_tool_scale_has_changed (GimpRectangleTool *rectangle_tool)
|
||||||
|
Reference in New Issue
Block a user