Skip to content

Commit f844f6d

Browse files
sbraconniertonygermano
authored andcommitted
Use the dedicated ICON_CONNECTOR to represent a connector in the dashboard (#291)
This fixes a regression bug introduced in mirth 3.5.0 with commit 3004984 Issue: #291 Signed-off-by: sbraconnier <simonbraconnier@gmail.com>
1 parent cd1110e commit f844f6d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

client/src/com/mirth/connect/client/ui/TagTreeCellRenderer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ public Component getTreeCellRendererComponent(JTree tree, Object value, boolean
108108
if (status.getStatusType() == StatusType.CHANNEL) {
109109
icon = UIConstants.ICON_CHANNEL;
110110
channel = true;
111+
} else if (status.getStatusType() == StatusType.SOURCE_CONNECTOR || status.getStatusType() == StatusType.DESTINATION_CONNECTOR) {
112+
icon = UIConstants.ICON_CONNECTOR;
111113
}
112114
}
113115
} else if (value instanceof ChannelTableNode) {

0 commit comments

Comments
 (0)