* @brief Checks whether a waterfall plot is currently active. */
| 890 | * @brief Checks whether a waterfall plot is currently active. |
| 891 | */ |
| 892 | bool UI::Dashboard::waterfallRunning(const int index) |
| 893 | { |
| 894 | if (m_activeWaterfalls.contains(index)) |
| 895 | return m_activeWaterfalls[index]; |
| 896 | |
| 897 | return false; |
| 898 | } |
| 899 | #endif |
| 900 | |
| 901 | //-------------------------------------------------------------------------------------------------- |
no test coverage detected