From a608b366232aa5a28dde67792c8d2c6432df7bfb Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Wed, 16 Oct 2024 11:15:16 +0200 Subject: [PATCH] BIM: Fix BIM_Leader callback bug Probably due to changes in gui_lines `self.call` was no longer ended. Fixes: #17283. Forum topic: https://forum.freecad.org/viewtopic.php?t=91413 --- src/Mod/BIM/bimcommands/BimLeader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/BIM/bimcommands/BimLeader.py b/src/Mod/BIM/bimcommands/BimLeader.py index 948034e0e5..7fac7446af 100644 --- a/src/Mod/BIM/bimcommands/BimLeader.py +++ b/src/Mod/BIM/bimcommands/BimLeader.py @@ -52,6 +52,7 @@ class BIM_Leader(gui_lines.Line): def finish(self, closed=False, cont=False): import DraftVecUtils + self.end_callbacks(self.call) self.removeTemporaryObject() if getattr(self,"oldWP",None): FreeCAD.DraftWorkingPlane = self.oldWP