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

spk/ck degree spinboxes are no longer disabled based on solve option

parent 5db648f3
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -1362,8 +1362,7 @@ namespace Isis {

  void JigsawSetupDialog::on_positionComboBox_currentIndexChanged(const QString &arg1) {
    int currentIndex = m_ui->positionComboBox->currentIndex();
    QList<QSpinBox *> spkSpinBoxes{m_ui->spkDegreeSpinBox, m_ui->spkSolveDegreeSpinBox};
    for (auto &spinBox : spkSpinBoxes) {
    QSpinBox *spinBox = m_ui->spkSolveDegreeSpinBox;
    spinBox->setValue(currentIndex - 1);
    if (arg1 == "ALL") {
      spinBox->setEnabled(true);
@@ -1371,7 +1370,6 @@ namespace Isis {
    else {
      spinBox->setEnabled(false);
    }
    }

    // @todo @irh better way to do this than hard coded "magic" numbers?
    QTableWidget *table = m_ui->positionAprioriSigmaTable;