Skip to content

Commit

Permalink
makeBlocksByExtrude generated python command was badly formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaslg committed Feb 6, 2025
1 parent 7110d4a commit c8680bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Core/Topo/TopoManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3084,7 +3084,7 @@ Mgx3D::Internal::M3DCommandResultIfc* TopoManager::makeBlocksByExtrude(std::vect
message <<", ";
message << cofaces[i]->getName();
}
message <<"],"<<dv<<")";
message <<"],"<<dv.getScriptCommand()<<")";
log (TkUtil::TraceLog (message, TkUtil::Log::TRACE_4));

Topo::CommandExtrudeFace* command = new CommandExtrudeFace(getLocalContext(), cofaces, dv);
Expand All @@ -3097,7 +3097,7 @@ Mgx3D::Internal::M3DCommandResultIfc* TopoManager::makeBlocksByExtrude(std::vect
cmd << "\""<<cofaces[i]->getName()<< "\"";
}
cmd <<"],";
cmd << dv << ")";
cmd << dv.getScriptCommand() << ")";

command->setScriptCommand(cmd);

Expand Down

0 comments on commit c8680bd

Please sign in to comment.