Better history default sort

This commit is contained in:
LarsBrubaker 2020-05-23 17:04:07 -07:00
parent 1395a2453b
commit 70ba624c40

View file

@ -55,6 +55,11 @@ namespace MatterHackers.MatterControl.Library
this.ChildContainers = new List<ILibraryContainerLink>();
this.Items = new List<ILibraryItem>();
this.IsProtected = true;
DefaultSort = new SortBehavior()
{
SortKey = SortKey.ModifiedDate,
};
}
public int PageSize { get; set; } = 25;