Fixed a bug with hiding hint text on edit widget
Working on rename Fixed the blending on thumbnails. Some experimental work with adding more base library providers (dynamic folder adds) Test History and Queue providers
This commit is contained in:
parent
bf2484cdc3
commit
27677b44fd
14 changed files with 1008 additions and 53 deletions
|
|
@ -86,6 +86,16 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
|
|||
return printItems[itemIndex].Name;
|
||||
}
|
||||
|
||||
public override void RenameCollection(int collectionIndexToRename, string newName)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void RenameItem(int itemIndexToRename, string newName)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public static string StaticProviderKey
|
||||
{
|
||||
get
|
||||
|
|
@ -307,7 +317,7 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
|
|||
return new LibraryProviderSQLite(collection, this);
|
||||
}
|
||||
|
||||
public void LoadLibraryItems()
|
||||
void LoadLibraryItems()
|
||||
{
|
||||
printItems.Clear();
|
||||
IEnumerable<PrintItem> partFiles = GetLibraryItems(KeywordFilter);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue