Print configuration is now saved between Tux Paint sessions on Mac OS X.
This commit is contained in:
parent
23f586a668
commit
c0962bf16e
5 changed files with 98 additions and 37 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue