fix: Embed Reloads on Cmd Key Press

pull/2013/head
felix lee 9 months ago
parent f65c02cae3
commit 549d6cb984
  1. 6
      lib/src/widgets/quill/text_line.dart

@ -67,7 +67,11 @@ class _TextLineState extends State<TextLine> {
if (_metaOrControlPressed != newValue) {
setState(() {
_metaOrControlPressed = newValue;
_richTextKey = UniqueKey();
_linkRecognizers
..forEach((key, value) {
value.dispose();
})
..clear();
});
}
}

Loading…
Cancel
Save