Fix AutoExitBlockRule

pull/13/head
singerdmx 4 years ago
parent 2a22c59f57
commit dc7a62d935
  1. 7
      lib/models/rules/insert.dart
  2. 3
      lib/models/rules/rule.dart
  3. 2
      lib/widgets/proxy.dart

@ -155,11 +155,8 @@ class AutoExitBlockRule extends InsertRule {
return null; return null;
} }
Map<String, dynamic> attributes = cur.attributes ?? <String, dynamic>{}; // retain(1) should be '\n', set it with no attribute
BlockQuoteAttribute blockQuoteAttribute = BlockQuoteAttribute(); return Delta()..retain(index)..retain(1, null);
blockQuoteAttribute.value = null;
attributes.addAll(blockQuoteAttribute.toJson()); // TODO
return Delta()..retain(index)..retain(1, attributes);
} }
} }

@ -56,6 +56,9 @@ class Rules {
{int len, Object data, Attribute attribute}) { {int len, Object data, Attribute attribute}) {
Delta delta = document.toDelta(); Delta delta = document.toDelta();
for (var rule in _rules) { for (var rule in _rules) {
if (rule.type != ruleType) {
continue;
}
delta = delta =
rule.apply(delta, index, len: len, data: data, attribute: attribute); rule.apply(delta, index, len: len, data: data, attribute: attribute);
if (delta != null) { if (delta != null) {

@ -69,7 +69,7 @@ class RenderBaselineProxy extends RenderProxyBox {
0.0; 0.0;
@override @override
void performLayout() { performLayout() {
super.performLayout(); super.performLayout();
_prototypePainter.layout(); _prototypePainter.layout();
} }

Loading…
Cancel
Save