From ddb335cfe057336f1958d68126bb0471328d735c Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Wed, 27 Mar 2019 16:40:26 -0300 Subject: [PATCH] Arch: Store last used wall thickness and height values --- src/Mod/Arch/ArchWall.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index b27b83fa60..af2f20c9a7 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -415,11 +415,14 @@ class _CommandWall: self.Width = d self.tracker.width(d) + FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch").SetFloat("WallWidth",d) + def setHeight(self,d): self.Height = d self.tracker.height(d) + FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch").SetFloat("WallHeight",d) def setAlign(self,i):