From 78d995f2b874d5d4a2f4f112a667e870f4eec416 Mon Sep 17 00:00:00 2001 From: Luz Paz Date: Wed, 11 Jun 2025 15:10:48 -0400 Subject: [PATCH] TechDraw: fix typo in comment --- src/Mod/TechDraw/Gui/QGISVGTemplate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/TechDraw/Gui/QGISVGTemplate.cpp b/src/Mod/TechDraw/Gui/QGISVGTemplate.cpp index 8e3546e7e2..d432cfc52b 100644 --- a/src/Mod/TechDraw/Gui/QGISVGTemplate.cpp +++ b/src/Mod/TechDraw/Gui/QGISVGTemplate.cpp @@ -128,8 +128,8 @@ namespace { } // QSvgRenderer::transformForElement only returns transform for parents, not for the element itself - // If the `text` element itself has transform, let's wrap it in a shallow group so it's takin into account - // by QSvgRenderer::transformForElement + // If the `text` element itself has transform, let's wrap it in a shallow group so it's taken into + // account by QSvgRenderer::transformForElement for(QDomElement& textElement : textElements) { if (textElement.hasAttribute(QStringLiteral("transform"))) { QDomElement group = doc.createElement(QStringLiteral("g"));