Restore parameterless constructor

This commit is contained in:
John Lewin 2018-07-13 16:12:30 -07:00
parent 6ba0756b0e
commit 78a64419c3

View file

@ -47,6 +47,11 @@ namespace MatterHackers.MatterControl.PrintHistory
public int ThumbWidth { get; } = 50;
public int ThumbHeight { get; } = 50;
// Parameterless constructor required for ListView
public HistoryListView()
{
}
public HistoryListView(ThemeConfig theme)
: base(FlowDirection.TopToBottom)
{