Commit 90c6a776 authored by chrisryancombs's avatar chrisryancombs
Browse files

Fixed bug with validator enabling JigsawSetupDialog apply button when no images are selected.

parent 8747addc
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1494,8 +1494,10 @@ namespace Isis {
    }

    m_ui->okCloseButtonBox->button(QDialogButtonBox::Ok)->setEnabled(tablesAreValid);
    if (!m_ui->treeView->selectionModel()->selectedRows().isEmpty()) {
      m_ui->applySettingsPushButton->setEnabled(tablesAreValid);
    }
  }


  /**