Skip to content

Commit 41cbbc3

Browse files
ndg63276Mark Williams
andauthored
LIMS-2039: Change colour of dispensing position (#1026)
Co-authored-by: Mark Williams <mark.williams@diamond.ac.uk>
1 parent d10c549 commit 41cbbc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/js/modules/imaging/views/imageviewer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,11 +1029,11 @@ define(['marionette',
10291029
if (options.o.get('DISPENSEX') && options.o.get('DISPENSEY')) {
10301030
var disx = parseInt(options.o.get('DISPENSEX'))
10311031
var disy = parseInt(options.o.get('DISPENSEY'))
1032-
this.ctx.strokeStyle = 'white'
1032+
this.ctx.strokeStyle = 'deeppink'
10331033
this.ctx.beginPath()
10341034
this.ctx.arc(disx, disy, 50, 0, 2*Math.PI)
10351035
this.ctx.stroke()
1036-
this.ctx.fillStyle = 'white'
1036+
this.ctx.fillStyle = 'deeppink'
10371037
this.ctx.fillText('D',disx-5*m, disy+5*m)
10381038
this.ctx.closePath()
10391039
}

0 commit comments

Comments
 (0)