Add option to check if source is muted

This commit is contained in:
WarmUpTill
2022-01-03 21:53:56 +01:00
committed by WarmUpTill
parent 3417fc5407
commit f7b9795014
3 changed files with 48 additions and 10 deletions

View File

@@ -9,6 +9,8 @@
enum class AudioCondition {
ABOVE,
BELOW,
MUTE,
UNMUTE,
};
class MacroConditionAudio : public MacroCondition {
@@ -72,5 +74,7 @@ protected:
std::shared_ptr<MacroConditionAudio> _entryData;
private:
void SetWidgetVisibility();
bool _loading = true;
};