* @brief Toggle the backup pipeline (used by tests / headless tooling). */
| 370 | * @brief Toggle the backup pipeline (used by tests / headless tooling). |
| 371 | */ |
| 372 | void Misc::BackupManager::setEnabled(bool on) noexcept |
| 373 | { |
| 374 | m_enabled = on; |
| 375 | if (!on) |
| 376 | m_debounceTimer->stop(); |
| 377 | } |
| 378 | |
| 379 | //-------------------------------------------------------------------------------------------------- |
| 380 | // Slots |
no test coverage detected