Skip to content

Commit

Permalink
records not numbered in viz
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacedo committed Oct 12, 2022
1 parent 01a3599 commit c8492e1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ void applyDefaultVar() {
for (AlloyType r : currentModel.getTypes()) {
if (nodeStyle.get(r) == null && r.isVar && !(currentModel.getSuperType(r).isVar || nodeStyle.get(currentModel.getSuperType(r)) != null))
nodeStyle.put(r, DotStyle.DASHED);
if (number.get(r) == null && r.isRecord)
number.put(r, false);
}
for (AlloyRelation r : currentModel.getRelations()) {
if (edgeStyle.get(r) == null && r.isVar)
Expand Down

0 comments on commit c8492e1

Please sign in to comment.