We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01a3599 commit c8492e1Copy full SHA for c8492e1
org.alloytools.alloy.application/src/main/java/edu/mit/csail/sdg/alloy4viz/VizState.java
@@ -173,6 +173,8 @@ void applyDefaultVar() {
173
for (AlloyType r : currentModel.getTypes()) {
174
if (nodeStyle.get(r) == null && r.isVar && !(currentModel.getSuperType(r).isVar || nodeStyle.get(currentModel.getSuperType(r)) != null))
175
nodeStyle.put(r, DotStyle.DASHED);
176
+ if (number.get(r) == null && r.isRecord)
177
+ number.put(r, false);
178
}
179
for (AlloyRelation r : currentModel.getRelations()) {
180
if (edgeStyle.get(r) == null && r.isVar)
0 commit comments