From baa485d573e94a8ef602ae541e4f9608a9e4c9dd Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Thu, 1 Dec 2022 09:31:30 +0100 Subject: [PATCH] Arch: Fix Arch_Space text position --- src/Mod/Arch/ArchSpace.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/Arch/ArchSpace.py b/src/Mod/Arch/ArchSpace.py index 220d09fa95..2d6dada601 100644 --- a/src/Mod/Arch/ArchSpace.py +++ b/src/Mod/Arch/ArchSpace.py @@ -670,11 +670,13 @@ class _ViewProviderSpace(ArchComponent.ViewProviderComponent): if hasattr(vobj,"FirstLine"): scale = vobj.FirstLine.Value/vobj.FontSize.Value self.header.scaleFactor.setValue([scale,scale,scale]) + self.onChanged(vobj, "TextPosition") elif (prop == "FirstLine"): if hasattr(self,"header") and hasattr(vobj,"FontSize") and hasattr(vobj,"FirstLine"): scale = vobj.FirstLine.Value/vobj.FontSize.Value self.header.scaleFactor.setValue([scale,scale,scale]) + self.onChanged(vobj, "TextPosition") elif prop == "TextColor": if hasattr(self,"color") and hasattr(vobj,"TextColor"):