mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-19 13:56:06 -04:00
frontend: Fix muted colors
This commit is contained in:
@@ -725,7 +725,7 @@ void VolumeControl::updateMixerState()
|
||||
bool showAsUnassigned = !muted && unassigned;
|
||||
|
||||
volumeMeter->setMuted((showAsMuted || showAsUnassigned) && !showAsMonitored);
|
||||
setUseDisabledColors(showAsMuted);
|
||||
setUseDisabledColors(showAsMuted || !isActive);
|
||||
|
||||
// Qt doesn't support overriding the QPushButton icon using pseudo state selectors like :checked
|
||||
// in QSS so we set a checked class selector on the button to be used instead.
|
||||
|
||||
Reference in New Issue
Block a user