* @brief Re-arms a single-shot multiplot sweep capture. */
| 1428 | * @brief Re-arms a single-shot multiplot sweep capture. |
| 1429 | */ |
| 1430 | void UI::Dashboard::armMultiplotSweep(const int index) |
| 1431 | { |
| 1432 | auto it = m_multiplotSweep.find(index); |
| 1433 | if (it != m_multiplotSweep.end()) |
| 1434 | it.value().arm(); |
| 1435 | } |
| 1436 | |
| 1437 | //-------------------------------------------------------------------------------------------------- |
| 1438 | // Frame processing |