* @brief Checks whether a plot is currently active. */
| 856 | * @brief Checks whether a plot is currently active. |
| 857 | */ |
| 858 | bool UI::Dashboard::plotRunning(const int index) |
| 859 | { |
| 860 | if (m_activePlots.contains(index)) |
| 861 | return m_activePlots[index]; |
| 862 | |
| 863 | return false; |
| 864 | } |
| 865 | |
| 866 | /** |
| 867 | * @brief Checks whether an FFT plot is currently active. |