Add print shortcuts

- Issue MatterHackers/MCCentral#4363
Add ctrl-p keyboard shortcut for Print
- Issue MatterHackers/MCCentral#4360
Add print to the bed context menu
This commit is contained in:
John Lewin 2018-10-23 19:54:09 -07:00
parent 7d9dd206cb
commit 262a46299e
3 changed files with 112 additions and 82 deletions

View file

@ -2840,6 +2840,13 @@ If you experience adhesion problems, please re-run leveling."
}
break;
case Keys.P:
if (keyEvent.Control)
{
view3D.PushToPrinterAndPrint();
}
break;
case Keys.X:
if (keyEvent.Control)
{