Draft: Fix SoSeparator not deleted

This commit is contained in:
marioalexis
2022-02-09 19:06:45 -03:00
parent 51d7513042
commit e83972f990

View File

@@ -505,6 +505,7 @@ class Arc_3Points(gui_base.GuiCommandSimplest):
Gui.Snapper.getPoint(callback=self.getPoint,
movecallback=self.drawArc)
Gui.Snapper.ui.sourceCmd = self
Gui.Snapper.ui.setTitle(title=translate("draft", "Arc by 3 points"),
icon="Draft_Arc_3Points")
Gui.Snapper.ui.continueCmd.show()
@@ -528,8 +529,7 @@ class Arc_3Points(gui_base.GuiCommandSimplest):
# If there is not point, the command was cancelled
# so the command exits.
if not point:
self.tracker.off()
return
return None
# Avoid adding the same point twice
if point not in self.points:
@@ -547,6 +547,7 @@ class Arc_3Points(gui_base.GuiCommandSimplest):
Gui.Snapper.getPoint(last=self.points[-1],
callback=self.getPoint,
movecallback=self.drawArc)
Gui.Snapper.ui.sourceCmd = self
Gui.Snapper.ui.setTitle(title=translate("draft", "Arc by 3 points"),
icon="Draft_Arc_3Points")
Gui.Snapper.ui.continueCmd.show()
@@ -563,8 +564,8 @@ class Arc_3Points(gui_base.GuiCommandSimplest):
Draft.make_arc_3points([self.points[0],
self.points[1],
self.points[2]], primitive=False)
self.tracker.off()
self.doc.recompute()
self.finish()
if Gui.Snapper.ui.continueMode:
self.Activated()
@@ -588,6 +589,10 @@ class Arc_3Points(gui_base.GuiCommandSimplest):
self.points[1],
point)
def finish(self, close=False):
self.tracker.finalize()
self.doc.recompute()
Draft_Arc_3Points = Arc_3Points
Gui.addCommand('Draft_Arc_3Points', Arc_3Points())