From 5dda63ac3e7454632c7f4a3fce84f99f7fe57605 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Thu, 9 Mar 2017 12:20:53 +0800 Subject: [PATCH] Path.Area: fixed missing brace --- src/Mod/Path/App/Area.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Path/App/Area.cpp b/src/Mod/Path/App/Area.cpp index 95cdfec811..23099be31f 100644 --- a/src/Mod/Path/App/Area.cpp +++ b/src/Mod/Path/App/Area.cpp @@ -1692,9 +1692,10 @@ static void addCommand(Toolpath &path, const gp_Pnt &p, path.addCommand(cmd); cmd.Name = "G1"; } - }else + }else{ cmd.Parameters["X"] = p.X(); cmd.Parameters["Y"] = p.Y(); + } cmd.Parameters["Z"] = p.Z(); path.addCommand(cmd); }