order by name

This commit is contained in:
2025-01-28 20:46:47 +01:00
parent 1c9c50778a
commit 1b3070493c

View File

@@ -230,7 +230,7 @@ internal static class SharedFunctions
cc = 1; cc = 1;
// Rows // Rows
foreach (var action in installInfos.Actions) foreach (var action in installInfos.Actions.OrderBy(n => n.Name))
{ {
if (action.IsExtra || action.IsZip || string.IsNullOrWhiteSpace(action.Id) || !action.Id.StartsWith("mod:")) if (action.IsExtra || action.IsZip || string.IsNullOrWhiteSpace(action.Id) || !action.Id.StartsWith("mod:"))
continue; continue;
@@ -257,7 +257,7 @@ internal static class SharedFunctions
// Styling // Styling
cc = 1; cc = 1;
ws.Column(cc++).Width = 30; ws.Column(cc++).Width = 30;
ws.Column(cc++).Width = 15; ws.Column(cc++).Width = 20;
ws.Column(cc++).Width = 10; ws.Column(cc++).Width = 10;
ws.Column(cc++).Width = 20; ws.Column(cc++).Width = 20;
ws.Column(cc++).Width = 20; ws.Column(cc++).Width = 20;