| 308 | } |
| 309 | |
| 310 | static QStringList getSceneGroupsList() |
| 311 | { |
| 312 | QStringList list; |
| 313 | for (const auto &sg : GetSceneGroups()) { |
| 314 | list << QString::fromStdString(sg.name); |
| 315 | } |
| 316 | list.sort(); |
| 317 | return list; |
| 318 | } |
| 319 | |
| 320 | static QStringList getCanvasScenesList(obs_weak_canvas_t *weakCanvas) |
| 321 | { |
no outgoing calls
no test coverage detected