Update getIndentLevel

pull/162/head
Xin Yao 4 years ago
parent 0b33c9512c
commit e4cf28d054
  1. 5
      lib/models/documents/attribute.dart

@ -151,7 +151,10 @@ class Attribute<T> {
if (level == 2) { if (level == 2) {
return indentL2; return indentL2;
} }
return indentL3; if (level == 3) {
return indentL3;
}
return IndentAttribute(level: level);
} }
bool get isInline => scope == AttributeScope.INLINE; bool get isInline => scope == AttributeScope.INLINE;

Loading…
Cancel
Save