From f22af4afa984ff3094afa9168cf72fde5e285853 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 31 Oct 2023 19:25:36 +0100 Subject: [PATCH] Fixed an issue where parsing of theme include files would stop if non-existing include files were defined using variables --- es-core/src/ThemeData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/ThemeData.cpp b/es-core/src/ThemeData.cpp index 6c1177e2c..4cfdfa06c 100644 --- a/es-core/src/ThemeData.cpp +++ b/es-core/src/ThemeData.cpp @@ -1467,7 +1467,7 @@ void ThemeData::parseIncludes(const pugi::xml_node& root) #endif ""); } - return; + continue; } }