HistoryContainer drag should use standard behavior
- Issue MatterHackers/MCCentral#3575
This commit is contained in:
parent
7e7fc6fa10
commit
3c47b6bf92
1 changed files with 1 additions and 1 deletions
|
|
@ -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>();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue