aboutsummaryrefslogtreecommitdiff
path: root/src/crystfelimageview.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-12 11:22:00 +0200
committerThomas White <taw@physics.org>2020-08-12 11:22:00 +0200
commitd8d3d2df980ca7742f4fe162d67693db9f4dbf24 (patch)
treea2f934a951dd1213dfae222d785b24f0c931c497 /src/crystfelimageview.c
parente3ce7996792a406340384848994ea72b8b41a8b3 (diff)
Change colour of peak boxes to yellow
Shows up much better against the blue
Diffstat (limited to 'src/crystfelimageview.c')
-rw-r--r--src/crystfelimageview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crystfelimageview.c b/src/crystfelimageview.c
index 4e2f47b1..a96c3a9c 100644
--- a/src/crystfelimageview.c
+++ b/src/crystfelimageview.c
@@ -402,7 +402,7 @@ static void draw_peaks(cairo_t *cr, CrystFELImageView *iv,
y = p->pixel_pitch*(p->cny + p->fsy*f->fs + p->ssy*f->ss);
cairo_rectangle(cr, x-bs, y-bs, 2*bs, 2*bs);
cairo_set_line_width(cr, lw);
- cairo_set_source_rgb(cr, 1.0, 0.0, 0.0);
+ cairo_set_source_rgb(cr, 1.0, 1.0, 0.0);
cairo_stroke(cr);
}
}