Lots of work on Getting the QueueData instance to be separate form the UI queue and refs.

This commit is contained in:
larsbrubaker 2014-04-15 18:13:27 -07:00
parent 49c8a045a5
commit 4b6a3cfa97
40 changed files with 586 additions and 1534 deletions

View file

@ -213,8 +213,8 @@ namespace MatterHackers.MatterControl.PrintLibrary
if (System.IO.File.Exists(partFullPath))
{
PrintItem printItem = new PrintItem();
printItem.Name = System.IO.Path.GetFileNameWithoutExtension(partFullPath);
printItem.FileLocation = System.IO.Path.GetFullPath(partFullPath);
printItem.Name = Path.GetFileNameWithoutExtension(partFullPath);
printItem.FileLocation = Path.GetFullPath(partFullPath);
printItem.PrintItemCollectionID = PrintLibraryListControl.Instance.LibraryCollection.Id;
printItem.Commit();
}