diff --git a/editor/src/components/canvas/controls/comment-indicator.tsx b/editor/src/components/canvas/controls/comment-indicator.tsx index c13a8c7636f1..59ce50b2e381 100644 --- a/editor/src/components/canvas/controls/comment-indicator.tsx +++ b/editor/src/components/canvas/controls/comment-indicator.tsx @@ -67,11 +67,15 @@ const CommentIndicatorInner = React.memo(() => { return (
{ dispatch([switchEditorMode(EditorModes.commentMode(point))]) diff --git a/editor/src/templates/editor-canvas.tsx b/editor/src/templates/editor-canvas.tsx index 6a6d0c14caa3..f5e62694e466 100644 --- a/editor/src/templates/editor-canvas.tsx +++ b/editor/src/templates/editor-canvas.tsx @@ -151,7 +151,10 @@ function getDefaultCursorForMode(mode: Mode): CSSCursor { case 'textEdit': return CSSCursor.Select case 'comment': - return CSSCursor.Comment + if (mode.location == null) { + return CSSCursor.Comment + } + return CSSCursor.Select case 'follow': return CSSCursor.Select default: