Print configuration is now saved between Tux Paint sessions on Mac OS X.

This commit is contained in:
Martin Fuhrer 2007-07-25 05:39:18 +00:00
parent 23f586a668
commit c0962bf16e
5 changed files with 98 additions and 37 deletions

View file

@ -2051,6 +2051,12 @@ static void mainloop(void)
draw_toolbar();
update_screen_rect(&r_tools);
}
#ifdef __APPLE__
else if (key == SDLK_p && (mod & KMOD_CTRL) && (mod & KMOD_SHIFT) && !noshortcuts) {
/* Ctrl-Shft-P - Page Setup */
DisplayPageSetup(canvas);
}
#endif
else if (key == SDLK_p && (mod & KMOD_CTRL) && !noshortcuts)
{
/* Ctrl-P - Print */