Revert "app: Do not show brush outline when painting"

This reverts commit 031dc8e68a.
This commit is contained in:
Alexia Death 2010-03-19 20:21:42 +02:00
parent 021a49ce73
commit 656eb53aad
2 changed files with 2 additions and 4 deletions

View File

@ -115,7 +115,6 @@ gimp_brush_tool_init (GimpBrushTool *brush_tool)
"context/context-brush-select-set");
brush_tool->show_cursor = TRUE;
brush_tool->in_motion = FALSE;
brush_tool->draw_brush = TRUE;
brush_tool->brush_x = 0.0;
brush_tool->brush_y = 0.0;
@ -195,7 +194,7 @@ gimp_brush_tool_motion (GimpTool *tool,
brush_tool->brush_x = coords->x;
brush_tool->brush_y = coords->y;
}
brush_tool->in_motion = TRUE;
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tool));
}
@ -244,7 +243,7 @@ gimp_brush_tool_oper_update (GimpTool *tool,
coords);
}
}
brush_tool->in_motion = FALSE;
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tool));
}

View File

@ -38,7 +38,6 @@ struct _GimpBrushTool
gboolean show_cursor;
gboolean draw_brush;
gboolean in_motion;
gdouble brush_x;
gdouble brush_y;
};