Rename filesystem token from USER_PANELS to USER_WEBPANELS

This commit is contained in:
Alexander Bock
2024-04-16 20:40:17 +02:00
parent b1048269ae
commit 50dadb37a8
3 changed files with 5 additions and 5 deletions

View File

@@ -897,8 +897,8 @@ void OpenSpaceEngine::createUserDirectoriesIfNecessary() {
if (!std::filesystem::exists(absPath("${USER_CONFIG}"))) {
std::filesystem::create_directories(absPath("${USER_CONFIG}"));
}
if (!std::filesystem::is_directory(absPath("${USER_PANELS}"))) {
std::filesystem::create_directories(absPath("${USER_PANELS}"));
if (!std::filesystem::is_directory(absPath("${USER_WEBPANELS}"))) {
std::filesystem::create_directories(absPath("${USER_WEBPANELS}"));
}
}