Move definition of SwitchTargetType

This commit is contained in:
WarmUpTill
2021-04-29 21:19:23 +02:00
committed by WarmUpTill
parent 2af82fe22a
commit c468b0698b
2 changed files with 5 additions and 5 deletions

View File

@@ -54,11 +54,6 @@ struct SceneGroup {
}
};
enum class SwitchTargetType {
Scene,
SceneGroup,
};
class SceneGroupEditWidget : public QWidget {
Q_OBJECT

View File

@@ -2,6 +2,11 @@
#include <obs.hpp>
#include <QComboBox>
enum class SwitchTargetType {
Scene,
SceneGroup,
};
struct SceneSwitcherEntry {
SwitchTargetType targetType = SwitchTargetType::Scene;
SceneGroup *group = nullptr;