From 9ac84ed40847b9da15dc01ca1e3220ebc2f6a69d Mon Sep 17 00:00:00 2001 From: stephen iacovelli Date: Sun, 5 Apr 2026 19:52:33 +0000 Subject: [PATCH] Sort profiles list alphabetically --- ProfileManager.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ProfileManager.cpp b/ProfileManager.cpp index 81a65ec0e..ac9dec057 100644 --- a/ProfileManager.cpp +++ b/ProfileManager.cpp @@ -1021,6 +1021,11 @@ void ProfileManager::UpdateProfileList() } } + /*---------------------------------------------------------*\ + | Sort the profiles list | + \*---------------------------------------------------------*/ + std::sort(profile_list.begin(), profile_list.end()); + SignalProfileManagerUpdate(PROFILEMANAGER_UPDATE_REASON_PROFILE_LIST_UPDATED); } }