Fixes #707 Double press pause button causes fail

Working on a new interface to allow moving items in the library.
This commit is contained in:
Lars Brubaker 2016-05-04 12:14:10 -07:00
parent d414c5ff04
commit cdd9af3920
6 changed files with 65 additions and 25 deletions

View file

@ -193,6 +193,11 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
}
}
// Base implementation does not do moving.
public virtual void MoveItems(int[] indexes)
{
}
public abstract void RenameCollection(int collectionIndexToRename, string newName);
public abstract void RenameItem(int itemIndexToRename, string newName);