Skip to content

Commit f2c3bba

Browse files
committed
Don't highlight overlaps in single models
Don't show a dotted line around overlapping entities in the single model view. Refs pombase/pombase-gocam#63
1 parent d6c0e50 commit f2c3bba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gocam_view/templates/gocam_view/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@
608608
},
609609
'border-style': function(el) {
610610
let style = 'solid';
611-
if (isConnectingNode(el)) {
611+
if (isMergedModel && isConnectingNode(el)) {
612612
style = 'dashed';
613613
}
614614
return style;

0 commit comments

Comments
 (0)