rebased against v2_develop

This commit is contained in:
Tig
2024-07-19 17:02:14 -06:00
parent c537c347ee
commit 23737decec
65 changed files with 187 additions and 187 deletions

View File

@@ -590,7 +590,7 @@ public class FileDialog : Dialog
{
FileSystemInfoStats [] stats = State?.Children ?? new FileSystemInfoStats[0];
// This portion is never reordered (aways .. at top then folders)
// This portion is never reordered (always .. at top then folders)
IOrderedEnumerable<FileSystemInfoStats> forcedOrder = stats
.OrderByDescending (f => f.IsParent)
.ThenBy (f => f.IsDir ? -1 : 100);
@@ -670,7 +670,7 @@ public class FileDialog : Dialog
return;
}
// Don't include ".." (IsParent) in multiselections
// Don't include ".." (IsParent) in multi-selections
MultiSelected = toMultiAccept
.Where (s => !s.IsParent)
.Select (s => s.FileSystemInfo.FullName)