diff --git a/client/src/js/modules/imaging/views/imageviewer.js b/client/src/js/modules/imaging/views/imageviewer.js index 8f39b5c68..6ea6bf3f2 100644 --- a/client/src/js/modules/imaging/views/imageviewer.js +++ b/client/src/js/modules/imaging/views/imageviewer.js @@ -1029,11 +1029,11 @@ define(['marionette', if (options.o.get('DISPENSEX') && options.o.get('DISPENSEY')) { var disx = parseInt(options.o.get('DISPENSEX')) var disy = parseInt(options.o.get('DISPENSEY')) - this.ctx.strokeStyle = 'white' + this.ctx.strokeStyle = 'deeppink' this.ctx.beginPath() this.ctx.arc(disx, disy, 50, 0, 2*Math.PI) this.ctx.stroke() - this.ctx.fillStyle = 'white' + this.ctx.fillStyle = 'deeppink' this.ctx.fillText('D',disx-5*m, disy+5*m) this.ctx.closePath() }