From a953d5409908952b1406079b87313b656259afab Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Sat, 16 Jul 2005 07:43:29 +0000 Subject: [PATCH] Fixed issue where [Alt] had to be clicked when hitting [Yes] to confirm printing. Had forgotten to apply fix to Mac OS X. --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index f0bc45812..b221b41bf 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -14413,7 +14413,7 @@ static void do_print(void) #elif defined(__APPLE__) /* Mac OS X */ - int show = (SDL_GetModState() & KMOD_ALT) && !fullscreen; + int show = (want_alt_printcommand && !fullscreen); const char* error = SurfacePrint (canvas, show);