Working on making save as save to the right provider

Working on Copy to Library
This commit is contained in:
Lars Brubaker 2015-08-31 16:32:09 -07:00
parent 9dafbd047b
commit a35753c47d
6 changed files with 38 additions and 52 deletions

View file

@ -57,7 +57,7 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
int firstAddedDirectoryIndex;
public LibraryProviderSelector(Action<LibraryProvider> setCurrentLibraryProvider)
public LibraryProviderSelector(Action<LibraryProvider> setCurrentLibraryProvider, bool includeQueueLibraryProvider)
: base(null)
{
this.Name = "Home".Localize();
@ -66,14 +66,16 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
ApplicationController.Instance.CloudSyncStatusChanged.RegisterEvent(CloudSyncStatusChanged, ref unregisterEvents);
if (false)
if (includeQueueLibraryProvider)
{
// This is test code for how to add these when we get to it
// put in the queue provider
libraryCreators.Add(new LibraryProviderQueueCreator());
AddFolderImage("queue_folder.png");
}
// put in the queue provider
if(false)
{
// put in the history provider
libraryCreators.Add(new LibraryProviderHistoryCreator());
AddFolderImage("queue_folder.png");
}