mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-05 15:30:00 +01:00
BugFix missing test of audio settings
This commit is contained in:
@@ -2078,7 +2078,7 @@ void SourceControlWindow::RenderMediaPlayer(MediaSource *ms)
|
||||
ImGui::PopStyleColor(1);
|
||||
|
||||
ImGui::SetCursorScreenPos(imgarea.GetTL() + ImVec2(h_space_, v_space_));
|
||||
if ( ms->audioFlags() & Source::Audio_enabled )
|
||||
if ( Settings::application.accept_audio && ms->audioFlags() & Source::Audio_enabled )
|
||||
// Icon to inform audio decoding
|
||||
ImGui::Text("%s " ICON_FA_VOLUME_UP, ms->initials());
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user