From e4916d80574e1512b946ee2fd9cd8b0593a8bce2 Mon Sep 17 00:00:00 2001 From: 0penBrain <48731257+0penBrain@users.noreply.github.com> Date: Mon, 12 Sep 2022 12:07:42 +0200 Subject: [PATCH] Sketcher: fix misleading indentation --- src/Mod/Sketcher/Gui/CommandConstraints.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Sketcher/Gui/CommandConstraints.cpp b/src/Mod/Sketcher/Gui/CommandConstraints.cpp index 8461c464a5..05b5bf310c 100644 --- a/src/Mod/Sketcher/Gui/CommandConstraints.cpp +++ b/src/Mod/Sketcher/Gui/CommandConstraints.cpp @@ -465,10 +465,10 @@ void SketcherGui::doEndpointTangency(Sketcher::SketchObject* Obj, std::swap(PosId1,PosId2); } // GeoId1 is the B-spline now - } // end of code supports simple B-spline endpoint tangency + } // end of code supports simple B-spline endpoint tangency - Gui::cmdAppObjectArgs(Obj, "addConstraint(Sketcher.Constraint('Tangent',%d,%d,%d,%d)) ", - GeoId1,static_cast(PosId1),GeoId2,static_cast(PosId2)); + Gui::cmdAppObjectArgs(Obj, "addConstraint(Sketcher.Constraint('Tangent',%d,%d,%d,%d)) ", + GeoId1,static_cast(PosId1),GeoId2,static_cast(PosId2)); } void SketcherGui::doEndpointToEdgeTangency( Sketcher::SketchObject* Obj, int GeoId1, PointPos PosId1, int GeoId2)