order by name
This commit is contained in:
@@ -230,7 +230,7 @@ internal static class SharedFunctions
|
||||
cc = 1;
|
||||
|
||||
// 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:"))
|
||||
continue;
|
||||
@@ -257,7 +257,7 @@ internal static class SharedFunctions
|
||||
// Styling
|
||||
cc = 1;
|
||||
ws.Column(cc++).Width = 30;
|
||||
ws.Column(cc++).Width = 15;
|
||||
ws.Column(cc++).Width = 20;
|
||||
ws.Column(cc++).Width = 10;
|
||||
ws.Column(cc++).Width = 20;
|
||||
ws.Column(cc++).Width = 20;
|
||||
|
||||
Reference in New Issue
Block a user