app: fix brush outline position when snapping to stroke
In GimpPaintTool, fix the brush outline position while painting, when "Snap brush outline to stroke" is enabled.
This commit is contained in:
parent
8bc92fd0ed
commit
ea729f6d02
1 changed files with 2 additions and 2 deletions
|
|
@ -167,8 +167,8 @@ gimp_paint_tool_paint_timeout (GimpPaintTool *paint_tool)
|
|||
|
||||
g_mutex_lock (&paint_mutex);
|
||||
|
||||
paint_tool->paint_x = core->cur_coords.x;
|
||||
paint_tool->paint_y = core->cur_coords.y;
|
||||
paint_tool->paint_x = core->last_paint.x;
|
||||
paint_tool->paint_y = core->last_paint.y;
|
||||
|
||||
update = gimp_drawable_flush_paint (drawable);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue