Prevent interaction with library placeholder collections

- Remove hard-coded place holder tokens
 - Fix extruder number comments in exported gcode
This commit is contained in:
John Lewin 2015-09-21 15:27:32 -07:00
parent 9b36e1d228
commit 47062356db
4 changed files with 12 additions and 4 deletions

View file

@ -71,7 +71,7 @@ namespace MatterHackers.MatterControl.PrintLibrary
}
this.ItemName = libraryProvider.GetPrintItemName(itemIndex);
if(this.ItemName.IndexOf("!ProviderIsLoading!") != -1)
if(this.ItemName == LibraryRowItem.LoadingPlaceholderToken)
{
this.ItemName = "Retrieving Contents...".Localize();
this.IsViewHelperItem = true;