ensure doc is recompute after updates

This commit is contained in:
Morgan 'ARR\!' Allen 2025-05-19 21:18:39 -07:00
parent 03fc42579f
commit 638fda2daf

View file

@ -1,3 +1,4 @@
import FreeCAD as App
import FreeCADGui as Gui import FreeCADGui as Gui
class Syncable: class Syncable:
@ -41,3 +42,5 @@ class Syncable:
getattr(feature, self.method)() getattr(feature, self.method)()
s.recompute() s.recompute()
App.ActiveDocument.recompute()