Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Path.Area: fixed missing brace
  • Loading branch information
realthunder authored and wwmayer committed Mar 23, 2017
1 parent c1ab980 commit 721a256
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Mod/Path/App/Area.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 721a256

Please sign in to comment.