Skip to content

Commit

Permalink
BUG: Fix sanity check on stereographic coordinate value in Orientatio…
Browse files Browse the repository at this point in the history
…nUtility

Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
  • Loading branch information
imikejackson committed Aug 10, 2023
1 parent c825e49 commit b4eb5b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ void StereographicWidget::valuesUpdated(const QString& text)
{
QVector<double> values = getValues();

OrientationTransformation::ResultType result = OrientationTransformation::eu_check(values);
OrientationTransformation::ResultType result = OrientationTransformation::st_check(values);
int errorCode = result.result;
QString errorMsg = QString::fromStdString(result.msg);

Expand Down

0 comments on commit b4eb5b2

Please sign in to comment.