Fixed issue #10 (missing one iteration on rtabmap-console)

This commit is contained in:
matlabbe
2016-03-29 13:07:32 -04:00
parent 8030d89634
commit 30777b630a
3 changed files with 8 additions and 6 deletions

View File

@@ -73,7 +73,7 @@ PostProcessingDialog::PostProcessingDialog(QWidget * parent) :
connect(_ui->sba, SIGNAL(clicked(bool)), this, SIGNAL(configChanged()));
connect(_ui->sba_iterations, SIGNAL(valueChanged(int)), this, SIGNAL(configChanged()));
connect(_ui->sba_epsilon, SIGNAL(valueChanged(double)), this, SIGNAL(configChanged()));
connect(_ui->comboBox_sbaType, SIGNAL(indexChanged(int)), this, SIGNAL(configChanged()));
connect(_ui->comboBox_sbaType, SIGNAL(currentIndexChanged(int)), this, SIGNAL(configChanged()));
}
PostProcessingDialog::~PostProcessingDialog()