1
0
Fork 0
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:
reuk 2025-12-08 14:15:50 +00:00
parent 1a66a03103
commit caac369b45
No known key found for this signature in database

View file

@ -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 });