From 8dc6397fc4433785f73f8a1958ff11243c348376 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Mon, 28 Jul 2025 09:25:26 -0500 Subject: [PATCH] App: Fix XML namespace issue in Branding --- src/App/Branding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Branding.cpp b/src/App/Branding.cpp index 10789dde5c..8083476729 100644 --- a/src/App/Branding.cpp +++ b/src/App/Branding.cpp @@ -104,7 +104,7 @@ Branding::XmlConfig Branding::getUserDefines() const bool Branding::evaluateXML(QIODevice* device, QDomDocument& xmlDocument) { #if QT_VERSION >= QT_VERSION_CHECK(6,5,0) - if (!xmlDocument.setContent(device)) { + if (!xmlDocument.setContent(device, QDomDocument::ParseOption::UseNamespaceProcessing)) { return false; } #else