app: don't forget to move the start handle in GimpBlendTool

because the tool moves both handles when Alt is pressed.
This commit is contained in:
Michael Natterer 2011-10-05 23:40:44 +02:00
parent e8250320d5
commit 990a4bd271
1 changed files with 5 additions and 0 deletions

View File

@ -415,11 +415,16 @@ gimp_blend_tool_update_items (GimpBlendTool *blend_tool)
{
if (gimp_draw_tool_is_active (GIMP_DRAW_TOOL (blend_tool)))
{
gimp_canvas_handle_set_position (blend_tool->start_handle,
blend_tool->start_x,
blend_tool->start_y);
gimp_canvas_line_set (blend_tool->line,
blend_tool->start_x,
blend_tool->start_y,
blend_tool->end_x,
blend_tool->end_y);
gimp_canvas_handle_set_position (blend_tool->end_handle,
blend_tool->end_x,
blend_tool->end_y);