Pasted text should not use toggled style.

pull/1719/head
Mike Allen 1 year ago committed by X Code
parent 1899295fd3
commit 80cd5455e1
  1. 4
      lib/src/widgets/quill/quill_controller.dart

@ -303,7 +303,9 @@ class QuillController extends ChangeNotifier {
var shouldRetainDelta = toggledStyle.isNotEmpty &&
delta.isNotEmpty &&
delta.length <= 2 &&
delta.last.isInsert;
delta.last.isInsert &&
// pasted text should not use toggledStyle
(data is! String || data.length < 2);
if (shouldRetainDelta &&
toggledStyle.isNotEmpty &&
delta.length == 2 &&

Loading…
Cancel
Save