1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-19 17:40:51 +02:00

fix the device information listing to show the correct host name for the device being listed, not the currently selected Audacity preference. Expanded from patch by Leyland.

This commit is contained in:
richardash1981 2013-01-02 16:07:01 +00:00
parent 7c318fece2
commit 227ed95615
2 changed files with 2 additions and 3 deletions

View File

@ -109,7 +109,7 @@ environment variable will be searched before anywhere else.
The current working directory when Audacity is started. The current working directory when Audacity is started.
.RE .RE
.I ~/.audacity\-files .I ~/.audacity-data/Plug-Ins
.I <prefix>/share/audacity .I <prefix>/share/audacity
.RS .RS

View File

@ -2396,10 +2396,9 @@ wxString AudioIO::GetDeviceInfo()
} }
wxString name = DeviceName(info); wxString name = DeviceName(info);
wxString hostName = gPrefs->Read(wxT("/AudioIO/Host"), wxT(""));
s << wxT("Device ID: ") << j << e; s << wxT("Device ID: ") << j << e;
s << wxT("Device name: ") << name << e; s << wxT("Device name: ") << name << e;
s << wxT("Host name: ") << hostName << e; s << wxT("Host name: ") << HostName(info) << e;
s << wxT("Input channels: ") << info->maxInputChannels << e; s << wxT("Input channels: ") << info->maxInputChannels << e;
s << wxT("Output channels: ") << info->maxOutputChannels << e; s << wxT("Output channels: ") << info->maxOutputChannels << e;
s << wxT("Low Input Latency: ") << info->defaultLowInputLatency << e; s << wxT("Low Input Latency: ") << info->defaultLowInputLatency << e;