HistoryContainer drag should use standard behavior

- Issue MatterHackers/MCCentral#3575
This commit is contained in:
John Lewin 2018-06-13 17:28:56 -07:00
parent 7e7fc6fa10
commit 3c47b6bf92

View file

@ -83,7 +83,7 @@ namespace MatterHackers.MatterControl.Library
if (Directory.Exists(this.FullPath))
{
var recentFiles = new DirectoryInfo(this.FullPath).GetFiles("*.mcx").OrderByDescending(f => f.LastWriteTime);
Items = recentFiles.Take(this.PageSize).Select(f => new SceneReplacementFileItem(f.FullName)).ToList<ILibraryItem>();
Items = recentFiles.Take(this.PageSize).Select(f => new FileSystemFileItem(f.FullName)).ToList<ILibraryItem>();
}
}