mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-08 23:24:19 +00:00
MIDI: Remove separating ':' between endpoint name and group name
This commit is contained in:
parent
1a66a03103
commit
caac369b45
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ class MidiDeviceListConnectionBroadcaster : private AsyncUpdater,
|
|||
if (! blockName.has_value())
|
||||
continue;
|
||||
|
||||
const auto separator = endpoint->getName().isEmpty() || blockName->isEmpty() ? "" : " : ";
|
||||
const auto separator = endpoint->getName().isEmpty() || blockName->isEmpty() ? "" : " ";
|
||||
const auto name = endpoint->getName() + separator + *blockName;
|
||||
|
||||
result.add (MidiDeviceInfo { name, groupId });
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue