Skip to content

Commit

Permalink
BUG: Fix Reading Shift File in AlignSectionsList (#1018)
Browse files Browse the repository at this point in the history
Fixed a bug where identical logic branches were used in reading a shift file (AlignSectionsList.cpp)
  • Loading branch information
nyoungbq authored Jul 12, 2024
1 parent 8346cd3 commit ed04c3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Result<> AlignSectionsList::findShifts(std::vector<int64>& xShifts, std::vector<
}
else
{
results = readDream3dShiftsFile(m_InputValues->InputFile, zDim, xShifts, yShifts);
results = readUserShiftsFile(m_InputValues->InputFile, zDim, xShifts, yShifts);
}
return results;
}

0 comments on commit ed04c3a

Please sign in to comment.