diff --git a/ChangeLog b/ChangeLog index 848689ae30..ad7fcc557a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2007-11-13 Martin Nordholts + + Fixed warnings about negative rectangle widths/heights when + toggling 'Fixed center' while rubber banding a rectangle. + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_set_other_side_coord): Finnishing off with a + call to gimp_rectangle_tool_check_function() as changing the + coordinates of the opposite side might swap the orientation of the + rectangle. + 2007-11-13 Sven Neumann * app/core/gimpimage-merge.c (gimp_image_merge_layers): when we diff --git a/app/tools/gimprectangletool.c b/app/tools/gimprectangletool.c index 5ee3e52972..cb190327d8 100644 --- a/app/tools/gimprectangletool.c +++ b/app/tools/gimprectangletool.c @@ -2803,6 +2803,8 @@ gimp_rectangle_tool_set_other_side_coord (GimpRectangleTool *rect_tool, g_object_set (rect_tool, other_y, other_side_y, NULL); + + gimp_rectangle_tool_check_function (rect_tool); } /**