Skip to content

Commit 4bfad18

Browse files
committed
Refactor: Modify command
1 parent 5726376 commit 4bfad18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Application.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ void Application::run(const size_t argc, char** argv)
231231
{
232232
slice();
233233
}
234-
else if (stringcasecompare(argv[1], "modelsupport") == 0)
234+
else if (stringcasecompare(argv[1], "support") == 0)
235235
{
236236
slice();
237237
}

src/Slice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void Slice::compute()
3232
}
3333
scene.processMeshGroup(*mesh_group);
3434
}
35-
} else if (this->cmd == "modelsupport")
35+
} else if (this->cmd == "support")
3636
{
3737
for (std::vector<MeshGroup>::iterator mesh_group = scene.mesh_groups.begin(); mesh_group != scene.mesh_groups.end(); mesh_group++)
3838
{

0 commit comments

Comments
 (0)