Skip to content

Commit

Permalink
BUG: Fix setting StlFileReader filter property when executing Combine…
Browse files Browse the repository at this point in the history
…StlFiles filter (#61)
  • Loading branch information
jmarquisbq committed May 10, 2023
1 parent 4687434 commit d218aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DREAM3DReviewFilters/CombineStlFiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void CombineStlFiles::execute()
QVariant var;
var.setValue(file.canonicalFilePath());
reader->setProperty("StlFilePath", var);
var.setValue(file.baseName());
var.setValue(DataArrayPath(file.baseName()));
reader->setProperty("SurfaceMeshDataContainerName", var);
var.setValue(SIMPL::Defaults::FaceAttributeMatrixName);
reader->setProperty("FaceAttributeMatrixName", var);
Expand Down

0 comments on commit d218aa8

Please sign in to comment.