Commit 5db648f3 authored by Ian Humphrey's avatar Ian Humphrey
Browse files

added enabling logic for hermite spline

parent 4efb2088
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1377,6 +1377,14 @@ namespace Isis {
    QTableWidget *table = m_ui->positionAprioriSigmaTable;
    m_ui->positionAprioriSigmaTable->setRowCount(currentIndex);

    // Fitting over hermite spline only available to user when solve option is not NONE
    if (currentIndex == 0) {
      m_ui->hermiteSplineCheckBox->setEnabled(false);
    }
    else {
      m_ui->hermiteSplineCheckBox->setEnabled(true);
    }

    // POSITION
    if (currentIndex > 0) { 
      QTableWidgetItem *coefficient = new QTableWidgetItem();