Skip to content

Commit 1c4f373

Browse files
ogauthiersatjcelerier
authored andcommitted
audio: simplify pretty name for Default device
1 parent 2eade14 commit 1c4f373

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/plugins/score-plugin-audio/Audio/GenericMiniAudioInterface.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,9 @@ class GenericMiniAudioFactory
369369
if(followsDefaultDevice())
370370
{
371371
card_list_in->addItem(
372-
QObject::tr("Default device (follow system)"), DefaultDeviceItemData);
372+
QObject::tr("Default device"), DefaultDeviceItemData);
373373
card_list_out->addItem(
374-
QObject::tr("Default device (follow system)"), DefaultDeviceItemData);
374+
QObject::tr("Default device"), DefaultDeviceItemData);
375375
}
376376

377377
// qDebug() << Q_FUNC_INFO << "Devices: ";

src/plugins/score-plugin-audio/Audio/WASAPIMiniAudioInterface.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class WASAPIMiniAudioFactory final : public GenericMiniAudioFactory
1919
QString prettyName() const override { return QObject::tr("WASAPI (miniaudio)"); }
2020
bool available() const noexcept override { return true; }
2121

22-
// Expose the "Default device (follow system)" entry: when selected, the
22+
// Expose the "Default device" entry: when selected, the
2323
// engine opens the OS default device with a NULL miniaudio device id, so
2424
// WASAPI reroutes automatically when the Windows mixer default changes.
2525
bool followsDefaultDevice() const noexcept override { return true; }

0 commit comments

Comments
 (0)