Improving print history display

This commit is contained in:
Lars Brubaker 2020-07-06 17:48:47 -07:00
parent 74f20132b4
commit 50041b2142
4 changed files with 16 additions and 7 deletions

View file

@ -62,9 +62,15 @@ namespace MatterHackers.MatterControl.Library
() => "Print History".Localize(),
AggContext.StaticData.LoadIcon(Path.Combine("Library", "history_20x20.png")),
AggContext.StaticData.LoadIcon(Path.Combine("Library", "history_folder.png")),
() => new PrintHistoryContainer())
() => new PrintHistoryContainer()
{
DefaultSort = new SortBehavior()
{
SortKey = SortKey.ModifiedDate,
}
})
{
IsReadOnly = true
IsReadOnly = true,
});
}
}