Sort profiles list alphabetically

This commit is contained in:
stephen iacovelli
2026-04-05 19:52:33 +00:00
committed by Adam Honse
parent 959f8822f8
commit 9ac84ed408

View File

@@ -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);
}
}