Skip to content

Commit 566a7b6

Browse files
committedMar 5, 2023
Sort the order of Social Media panel icons by URL (Issue: #79)
1 parent 9e19599 commit 566a7b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎CollapseLauncher/Classes/BackgroundManagement/BackgroundManagement.cs

+2
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,8 @@ private void GetLauncherAdvInfo(CancellationToken Token, PresetConfigV2 Preset)
153153
Description = string.IsNullOrEmpty(item.title) || Preset.IsHideSocMedDesc ? item.url : item.title
154154
});
155155
}
156+
157+
regionNewsProp.sideMenuPanel = regionNewsProp.sideMenuPanel.OrderBy(x => x.URL).ToList();
156158
}
157159

158160
private void GetLauncherCarouselInfo(CancellationToken Token)

0 commit comments

Comments
 (0)
Please sign in to comment.