| 293 | } |
| 294 | |
| 295 | static QStringList getOrderList(bool current, bool previous, bool preview) |
| 296 | { |
| 297 | QStringList list; |
| 298 | if (current) { |
| 299 | list << obs_module_text("AdvSceneSwitcher.selectCurrentScene"); |
| 300 | } |
| 301 | if (previous) { |
| 302 | list << obs_module_text("AdvSceneSwitcher.selectPreviousScene"); |
| 303 | } |
| 304 | if (preview) { |
| 305 | list << obs_module_text("AdvSceneSwitcher.selectPreviewScene"); |
| 306 | } |
| 307 | return list; |
| 308 | } |
| 309 | |
| 310 | static QStringList getSceneGroupsList() |
| 311 | { |
no test coverage detected