@@ -1192,13 +1192,13 @@ export abstract class RendererBase {
11921192 . center ( pt . x , pt . y )
11931193 . attr ( { 'pointer-events' : 'none' } ) ;
11941194 } else if ( shape === "circle" ) {
1195- notes . circle ( this . cellsize * 1.1 )
1195+ notes . circle ( this . cellsize * 1.1 , this . cellsize * 1.1 )
11961196 . addClass ( `aprender-annotation-${ x2uid ( cloned ) } ` )
11971197 . fill ( "none" )
11981198 . stroke ( { color : this . options . colourContext . board ?? this . options . colourContext . background , width : strokeWeight , linecap : "round" , linejoin : "round" , opacity : bgopacity } )
11991199 . center ( pt . x , pt . y )
12001200 . attr ( { 'pointer-events' : 'none' } ) ;
1201- notes . circle ( this . cellsize * 1.1 )
1201+ notes . circle ( this . cellsize * 1.1 , this . cellsize * 1.1 )
12021202 . addClass ( `aprender-annotation-${ x2uid ( cloned ) } ` )
12031203 . fill ( "none" )
12041204 . stroke ( { color : colour , width : strokeWeight , dasharray, linecap : "round" , linejoin : "round" , opacity} )
@@ -1319,13 +1319,13 @@ export abstract class RendererBase {
13191319 . center ( pt . x , pt . y )
13201320 . attr ( { 'pointer-events' : 'none' } ) ;
13211321 } else if ( shape === "circle" ) {
1322- notes . circle ( this . cellsize * 1.1 )
1322+ notes . circle ( this . cellsize * 1.1 , this . cellsize * 1.1 )
13231323 . addClass ( `aprender-annotation-${ x2uid ( cloned ) } ` )
13241324 . fill ( "none" )
13251325 . stroke ( { color : this . options . colourContext . board ?? this . options . colourContext . background , width : strokeWeight , linecap : "round" , linejoin : "round" , opacity : bgopacity } )
13261326 . center ( pt . x , pt . y )
13271327 . attr ( { 'pointer-events' : 'none' } ) ;
1328- notes . circle ( this . cellsize * 1.1 )
1328+ notes . circle ( this . cellsize * 1.1 , this . cellsize * 1.1 )
13291329 . addClass ( `aprender-annotation-${ x2uid ( cloned ) } ` )
13301330 . fill ( "none" )
13311331 . stroke ( { color : colour , width : strokeWeight , dasharray, linecap : "round" , linejoin : "round" , opacity} )
0 commit comments