Fixed g2o version not correctly used, D400: set default to IR+Depth

This commit is contained in:
matlabbe
2023-03-13 22:10:24 -07:00
parent 92b9cc89e0
commit 6fe5e6375f
2 changed files with 8 additions and 4 deletions

View File

@@ -3921,12 +3921,16 @@ void PreferencesDialog::selectSourceDriver(Src src, int variant)
_ui->spinBox_rs2_width->setValue(1280);
_ui->spinBox_rs2_height->setValue(720);
_ui->spinBox_rs2_rate->setValue(30);
_ui->checkbox_rs2_irMode->setChecked(false);
_ui->checkbox_rs2_emitter->setChecked(true);
}
else
else // D400
{
_ui->spinBox_rs2_width->setValue(848);
_ui->spinBox_rs2_height->setValue(480);
_ui->spinBox_rs2_rate->setValue(60);
_ui->checkbox_rs2_irMode->setChecked(true);
_ui->checkbox_rs2_emitter->setChecked(false);
}
}
}