From 8add77074bf2fea2d1aca53da0ef9a9c94fe4477 Mon Sep 17 00:00:00 2001 From: John Nesky Date: Thu, 30 May 2024 18:35:43 -0700 Subject: [PATCH] Update content highlight when comment is moved. --- plugins/content-highlight/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/content-highlight/src/index.ts b/plugins/content-highlight/src/index.ts index db0f3b88ca..4ec5a2d23f 100644 --- a/plugins/content-highlight/src/index.ts +++ b/plugins/content-highlight/src/index.ts @@ -17,6 +17,9 @@ const contentChangeEvents = [ Blockly.Events.VIEWPORT_CHANGE, Blockly.Events.BLOCK_MOVE, Blockly.Events.BLOCK_DELETE, + Blockly.Events.COMMENT_MOVE, + Blockly.Events.COMMENT_CREATE, + Blockly.Events.COMMENT_DELETE, ]; /**