From d13d30ffcba5d5dc73bf5b0e1a48a30a4f7f3a3d Mon Sep 17 00:00:00 2001 From: Ellet Hnewa <73608287+ellet0@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:03:56 +0400 Subject: [PATCH] Remove finished todo in raw_editor_state.dart --- lib/src/widgets/raw_editor/raw_editor_state.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index 1798722cb..03424ccdd 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -210,7 +210,6 @@ class QuillRawEditorState extends EditorState final clipboard = SystemClipboard.instance; if (clipboard != null) { - // TODO: Bug, Doesn't replace the selected text, it just add a new one final reader = await clipboard.read(); if (reader.canProvide(Formats.htmlText)) { final html = await reader.readValue(Formats.htmlText);