fixed #1835 Embed Reloads on Cmd Key Press (#2013)

pull/2017/head v9.5.19
Felix Lee 9 months ago committed by GitHub
parent 5aca31f629
commit 492f25b0df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      lib/src/widgets/quill/text_line.dart

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

Loading…
Cancel
Save