| 114 | } |
| 115 | |
| 116 | std::vector<std::filesystem::path> PythonScriptManagerState::enabledScripts() const { |
| 117 | std::lock_guard lock(mutex_); |
| 118 | std::vector<std::filesystem::path> result; |
| 119 | for (const auto& s : scripts_) { |
| 120 | if (s.enabled) { |
| 121 | result.push_back(s.path); |
| 122 | } |
| 123 | } |
| 124 | return result; |
| 125 | } |
| 126 | |
| 127 | } // namespace lfs::vis::gui::panels |
no test coverage detected