| 104 | } |
| 105 | |
| 106 | void ReconstructionManagerWidget::SelectReconstruction(const size_t idx) { |
| 107 | if (reconstruction_manager_->Size() == 0) { |
| 108 | blockSignals(true); |
| 109 | setCurrentIndex(0); |
| 110 | blockSignals(false); |
| 111 | } else { |
| 112 | blockSignals(true); |
| 113 | setCurrentIndex(idx + 1); |
| 114 | blockSignals(false); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | } // namespace colmap |
no test coverage detected