Component Diagram : Labels overlapping with node's sides

+2 votes
asked May 2, 2018 in Bug by FuSoftware (140 points)

On COmponent diagrams, sometimes the interfaces' labels may be overlapping with the node's label. See the MIDI IN and MIDI OUT labels in the diagram below

@startuml
[MIDI Keyboard] as MIDDevIn
[MIDI Synthesizer] as MIDDevOut
[Speaker] as Speaker

node "Synth PCB" {
    interface I2C
    interface "MIDI IN" as MidiIn
    interface "MIDI OUT" as MidiOut
    interface "Jack 3.5" as Jack

    [PIC 16F628A (MIDI)] as PICMid
    [PIC 16F628A (Synth)] as PICSynth

    MidiIn <- MIDDevIn 
    MidiOut -> MIDDevOut 
    Jack -> Speaker

    PICMid -right- MidiIn
    PICMid -down- MidiOut
    PICSynth - Jack

    I2C <.. PICMid : Sends
    PICSynth <.. I2C : Receives
}
@enduml

image

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...