Skip to content

Commit c2bd813

Browse files
committed
fix(Tooltip): Fix not showing the right recording device in tooltip when SoundSwitch starts
Fixes #1123
1 parent 5a63adb commit c2bd813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SoundSwitch/Framework/TrayIcon/TooltipInfoManager/TootipInfo/TooltipInfoRecording.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public TooltipInfoRecording()
3535
return;
3636
_defaultDevice = @event.Device;
3737
};
38-
_defaultDevice = AudioSwitcher.Instance.GetDefaultAudioEndpoint(EDataFlow.eRender, ERole.eConsole);
38+
_defaultDevice = AudioSwitcher.Instance.GetDefaultAudioEndpoint(EDataFlow.eCapture, ERole.eConsole);
3939
}
4040

4141
/// <summary>

0 commit comments

Comments
 (0)