diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2016-01-15 10:16:12 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2016-01-15 10:16:12 +0000 |
| commit | cbf36bcb4c4458c0eb9db0f4ffdf158611ee52c8 (patch) | |
| tree | b9b5f5c646e36be2b3b9686a41e0659cfa5c0032 /src/display/cairo-utils.cpp | |
| parent | cmake: Update .bzrignore with man page temp files (diff) | |
| download | inkscape-cbf36bcb4c4458c0eb9db0f4ffdf158611ee52c8.tar.gz inkscape-cbf36bcb4c4458c0eb9db0f4ffdf158611ee52c8.zip | |
More subtle checkerboard pattern centered around 50% gray. Makes editing nodes more visible.
Note, input values are in sRGB.
(bzr r14584)
Diffstat (limited to 'src/display/cairo-utils.cpp')
| -rw-r--r-- | src/display/cairo-utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display/cairo-utils.cpp b/src/display/cairo-utils.cpp index 59e190676..24a75de4c 100644 --- a/src/display/cairo-utils.cpp +++ b/src/display/cairo-utils.cpp @@ -1120,9 +1120,9 @@ ink_cairo_pattern_create_checkerboard() cairo_t *ct = cairo_create(s); cairo_set_operator(ct, CAIRO_OPERATOR_SOURCE); - cairo_set_source_rgb(ct, 0.75, 0.75, 0.75); + cairo_set_source_rgb(ct, 0.77, 0.77, 0.77); cairo_paint(ct); - cairo_set_source_rgb(ct, 0.5, 0.5, 0.5); + cairo_set_source_rgb(ct, 0.69, 0.69, 0.69); cairo_rectangle(ct, 0, 0, w, h); cairo_rectangle(ct, w, h, w, h); cairo_fill(ct); |
