From 9227b8af8289914f70be2d15e0c670eb62957763 Mon Sep 17 00:00:00 2001 From: Martin Marmsoler Date: Fri, 17 Feb 2023 15:57:35 +0100 Subject: [PATCH] Resources file dir does not exist anymore --- src/conf/Settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf/Settings.cpp b/src/conf/Settings.cpp index 6aa98e7b..1a3b7cc3 100644 --- a/src/conf/Settings.cpp +++ b/src/conf/Settings.cpp @@ -224,7 +224,7 @@ QDir Settings::confDir() { QDir dir(SRC_CONF_DIR); #else QDir dir = rootDir(); - if (!dir.cd("Resources")) + if (!dir.cd("Gittyup")) dir = QDir(CONF_DIR); #endif return dir;