diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 7875861e3..5e4a347ed 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,7 +7,7 @@ bill@newbreedsoftware.com http://www.newbreedsoftware.com/tuxpaint/ -2003.Sep.27 (0.9.13) [cvs] +2003.Sep.28 (0.9.13) [cvs] * Translated into Tamil [buggy] Mugunth diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 94eca9e73..9636a56cb 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -12,7 +12,7 @@ #define VER_VERSION "0.9.13" -#define VER_DATE "2003.09.27" +#define VER_DATE "2003.09.28" /* #define DEBUG */ @@ -1595,6 +1595,15 @@ void mainloop(void) do_draw = 1; } } + else if (cur_tool == TOOL_STAMP && + event.button.y >= (48 * ((max / 2) + TOOLOFFSET / 2)) + 40 && + event.button.y < (48 * ((max / 2) + TOOLOFFSET / 2)) + 40 + 96 && + !disable_stamp_controls) + { + /* Stamp controls! */ + + printf("CLICK!\n"); + } /* Assign the change(s), if any / redraw, if needed: */