Skip to content

Commit 3bb3fab

Browse files
committed
frontend: Show warning icon for Monitor Only
1 parent d09a30c commit 3bb3fab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/components/VolumeControl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ void VolumeControl::processMixerState()
772772

773773
bool showAsMuted = obsMuted || obsMonitoringType == OBS_MONITORING_TYPE_MONITOR_ONLY;
774774
bool showAsMonitored = obsMonitoringType != OBS_MONITORING_TYPE_NONE;
775-
bool showAsUnassigned = !obsMuted && unassigned;
775+
bool showAsUnassigned = !obsMuted && (unassigned || obsMonitoringType == OBS_MONITORING_TYPE_MONITOR_ONLY);
776776

777777
volumeMeter->setMuted((showAsMuted || showAsUnassigned) && !showAsMonitored);
778778
setUseDisabledColors(showAsMuted || !isActive);

0 commit comments

Comments
 (0)