diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 25356628b..ad8cf816a 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -8,7 +8,7 @@ http://www.tuxpaint.org/ $Id$ -2008.August.8 (0.9.21) +2008.August.14 (0.9.21) * New Starters: ------------- * Silver Frame @@ -88,6 +88,11 @@ $Id$ Tux Paint is the active application again.) John Popplewell + * Directional brushes used to always begin with middle image; + now this only happens if you click and release, with dragging. + Jason Ward + Pere Pujal i Carabantes + 2008.June.26 (0.9.20) * New translations: diff --git a/src/tuxpaint.c b/src/tuxpaint.c index d61b99ccb..4123e55bf 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -3666,7 +3666,12 @@ static void mainloop(void) if (button_down) { - if (cur_tool == TOOL_LINES) + if (cur_tool == TOOL_BRUSH) + { + /* (Drawing on mouse release to fix single click issue) */ + brush_draw(old_x, old_y, old_x, old_y, 1); + } + else if (cur_tool == TOOL_LINES) { /* (Arbitrarily large, so we draw once now) */ reset_brush_counter();