* @brief Recreates the FrameReader for device 0 with the current settings. */
| 728 | * @brief Recreates the FrameReader for device 0 with the current settings. |
| 729 | */ |
| 730 | void IO::ConnectionManager::resetFrameReader() |
| 731 | { |
| 732 | auto it = m_devices.find(0); |
| 733 | if (it != m_devices.end() && it->second) |
| 734 | it->second->reconfigure(buildFrameConfig(0)); |
| 735 | } |
| 736 | |
| 737 | /** |
| 738 | * @brief Wires a UI driver's configurationChanged to persist, sync-to-live, and QML-forward |
no test coverage detected