Skip to content

Commit

Permalink
fix(Tooltip): Fix not showing the right recording device in tooltip w…
Browse files Browse the repository at this point in the history
…hen SoundSwitch starts

Fixes #1123
  • Loading branch information
Belphemur committed Feb 12, 2023
1 parent 5a63adb commit c2bd813
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public TooltipInfoRecording()
return;
_defaultDevice = @event.Device;
};
_defaultDevice = AudioSwitcher.Instance.GetDefaultAudioEndpoint(EDataFlow.eRender, ERole.eConsole);
_defaultDevice = AudioSwitcher.Instance.GetDefaultAudioEndpoint(EDataFlow.eCapture, ERole.eConsole);
}

/// <summary>
Expand Down

0 comments on commit c2bd813

Please sign in to comment.