Skip to content

Commit

Permalink
Fix check of pose file existence (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
marip8 authored Aug 22, 2024
1 parent 76c400d commit 716219b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/extrinsic_hand_eye_calibration_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ void ExtrinsicHandEyeCalibrationWidget::calibrate()
}

QString pose_file = item->data(0, POSE_FILE_NAME_ROLE).value<QString>();
if (!QFile(image_file).exists())
if (!QFile(pose_file).exists())
{
error(item, "Pose file does not exist");
continue;
Expand Down

0 comments on commit 716219b

Please sign in to comment.