Merge pull request #4668 from jlewin/2.19.7

Guard for null
This commit is contained in:
johnlewin 2019-09-26 12:16:04 -07:00 committed by GitHub
commit adcab0fcdd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,7 +193,7 @@ namespace MatterHackers.MatterControl
return;
}
DoExport(libraryItems, printer, activePlugin, centerOnBed, showInFolderAfterSave.Checked);
DoExport(libraryItems, printer, activePlugin, centerOnBed, showInFolderAfterSave?.Checked == true);
this.Parent.CloseOnIdle();
};