Fixed issue where [Alt] had to be clicked when hitting [Yes] to confirm
printing. Had forgotten to apply fix to Mac OS X.
This commit is contained in:
parent
a8468064fa
commit
a953d54099
1 changed files with 1 additions and 1 deletions
|
|
@ -14413,7 +14413,7 @@ static void do_print(void)
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
/* Mac OS X */
|
/* Mac OS X */
|
||||||
|
|
||||||
int show = (SDL_GetModState() & KMOD_ALT) && !fullscreen;
|
int show = (want_alt_printcommand && !fullscreen);
|
||||||
|
|
||||||
const char* error = SurfacePrint (canvas, show);
|
const char* error = SurfacePrint (canvas, show);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue