From 3b2033857ed7383ec834ceaaf88df61e957a20ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sat, 29 Nov 2025 02:02:45 +0100 Subject: [PATCH] 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. --- containments/homescreens/folio/applicationlistmodel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/containments/homescreens/folio/applicationlistmodel.cpp b/containments/homescreens/folio/applicationlistmodel.cpp index c3980d91..2943aa2a 100644 --- a/containments/homescreens/folio/applicationlistmodel.cpp +++ b/containments/homescreens/folio/applicationlistmodel.cpp @@ -181,6 +181,7 @@ ApplicationListSearchModel::ApplicationListSearchModel(HomeScreen *parent, Appli setSortRole(ApplicationListModel::NameRole); setSortCaseSensitivity(Qt::CaseInsensitive); + setSortLocaleAware(true); sort(0, Qt::AscendingOrder); }