Don't return in the middle of the function.
2008-05-22 Martin Nordholts <martinn@svn.gnome.org> * app/tools/gimpfreeselecttool.c (gimp_free_select_tool_cursor_update): Don't return in the middle of the function. svn path=/trunk/; revision=25746
This commit is contained in:

committed by
Martin Nordholts

parent
d35c006b4d
commit
41f102f1ab
@ -1,3 +1,9 @@
|
||||
2008-05-22 Martin Nordholts <martinn@svn.gnome.org>
|
||||
|
||||
* app/tools/gimpfreeselecttool.c
|
||||
(gimp_free_select_tool_cursor_update): Don't return in the middle
|
||||
of the function.
|
||||
|
||||
2008-05-21 Martin Nordholts <martinn@svn.gnome.org>
|
||||
|
||||
* app/tools/gimpforegroundselecttool.c
|
||||
|
@ -937,10 +937,14 @@ gimp_free_select_tool_cursor_update (GimpTool *tool,
|
||||
gimp_tool_control_get_tool_cursor (tool->control),
|
||||
GIMP_CURSOR_MODIFIER_MOVE);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool, coords, state, display);
|
||||
else
|
||||
{
|
||||
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool,
|
||||
coords,
|
||||
state,
|
||||
display);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user