From 3527290e1e746162c98a28ed1443bea5e2ac3ecc Mon Sep 17 00:00:00 2001 From: erhant Date: Fri, 19 Jun 2026 22:52:36 +0300 Subject: [PATCH] fix: use `AppLocalDataLocation` --- src/lez_explorer_ui_backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lez_explorer_ui_backend.cpp b/src/lez_explorer_ui_backend.cpp index 2d92ed2..b923e84 100644 --- a/src/lez_explorer_ui_backend.cpp +++ b/src/lez_explorer_ui_backend.cpp @@ -488,7 +488,7 @@ namespace { // const and non-const accessors. QString resolveConfigFilePath() { - QString dir = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); + QString dir = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation); if (dir.isEmpty()) { dir = QDir::tempPath(); }