From b0d141fed306514fd57de39a14e270c54e9dc8ee Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Thu, 25 Feb 2010 21:46:14 +0000 Subject: [PATCH] Fixed dumb typo bug in recently-modified canvas/screen update code. --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 0d2a25ee8..e276ad24f 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -906,7 +906,7 @@ static void update_canvas_ex(int x1, int y1, int x2, int y2, int screen_too) /* Update the screen with the new canvas: */ static void update_canvas(int x1, int y1, int x2, int y2) { - update_canvas_ex(x1, y1, x2, y1, 1); + update_canvas_ex(x1, y1, x2, y2, 1); }