Got the queue and the count tab to work.

This commit is contained in:
larsbrubaker 2014-04-16 12:01:01 -07:00
parent f9baaf2f35
commit 4508a25e58
13 changed files with 112 additions and 38 deletions

View file

@ -177,7 +177,7 @@ namespace MatterHackers.MatterControl.ActionBar
{
foreach (string loadedFileName in openParams.FileNames)
{
QueueData.Instance.AddItem(new PrintItem(Path.GetFileNameWithoutExtension(loadedFileName), Path.GetFullPath(loadedFileName)));
QueueData.Instance.AddItem(new PrintItemWrapper(new PrintItem(Path.GetFileNameWithoutExtension(loadedFileName), Path.GetFullPath(loadedFileName))));
}
}
}