homescreens/folio: Use locale-aware sorting for application list

This fixes the problem that application names starting with non-English
characters are placed at the end of the list.
This commit is contained in:
Balló György 2025-11-29 02:02:45 +01:00 committed by Devin Lin
parent 46fb65bddc
commit 3b2033857e

View file

@ -181,6 +181,7 @@ ApplicationListSearchModel::ApplicationListSearchModel(HomeScreen *parent, Appli
setSortRole(ApplicationListModel::NameRole);
setSortCaseSensitivity(Qt::CaseInsensitive);
setSortLocaleAware(true);
sort(0, Qt::AscendingOrder);
}