Commit c25b6615 authored by Ian Humphrey's avatar Ian Humphrey
Browse files

ck degree spinbox no longer changed based on solve option

parent efe8cbbf
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -1500,8 +1500,7 @@ namespace Isis {

 void JigsawSetupDialog::on_pointingComboBox_currentIndexChanged(const QString &arg1) {
    int currentIndex = m_ui->pointingComboBox->currentIndex();
    QList<QSpinBox *> ckSpinBoxes{m_ui->ckDegreeSpinBox, m_ui->ckSolveDegreeSpinBox};
    for (auto &spinBox : ckSpinBoxes) {
    QSpinBox *spinBox = m_ui->ckSolveDegreeSpinBox;
    spinBox->setValue(currentIndex - 1);
    if (arg1 == "ALL") {
      spinBox->setReadOnly(false);
@@ -1510,7 +1509,6 @@ namespace Isis {
      spinBox->setReadOnly(true);
    }
  }
  }