This is a patch file for "tuxpaint" 0.9.21. This file is an attempt to reduce confusion related to "stamps". The default "tuxpaint" drawing color is black. If the user tries to use "stamps" without changing the drawing color, some of the stamps will produce solid black shapes (as opposed to pictures). The user can fix the problem by switching to a different color, but this isn't obvious. The patch below changes the default color from black to yellow. This is a kludge. --- tuxpaint-0.9.21.old/src/tuxpaint.c +++ tuxpaint-0.9.21/src/tuxpaint.c @@ -1774,7 +1774,7 @@ newest_undo = 0; cur_tool = TOOL_BRUSH; - cur_color = COLOR_BLACK; + cur_color = COLOR_YELLOW; colors_are_selectable = 1; cur_brush = 0; for (i = 0; i < MAX_STAMP_GROUPS; i++)