Brighten the diagonal line in curves, tone down the gridlines. Fixes #5687.

This commit is contained in:
Thanatomanic
2020-04-23 10:10:42 +02:00
parent 22eee9787e
commit 687217a6af
2 changed files with 2 additions and 2 deletions

View File

@@ -565,7 +565,7 @@ button.text-button.toggle:hover:checked {
.drawingarea {
border-radius: 0;
background-color: #2A2A2A;
border: 0.0833333333333333em solid #1D1D1D;
border: 0.0833333333333333em solid #888888;
}
.drawingarea:disabled {
background-color: #444;

View File

@@ -323,7 +323,7 @@ void MyDiagonalCurve::draw (int handle)
// draw the grid lines:
cr->set_line_width (1.0 * s);
c = style->get_border_color(state);
cr->set_source_rgb (c.get_red(), c.get_green(), c.get_blue());
cr->set_source_rgba (c.get_red(), c.get_green(), c.get_blue(), 0.3);
cr->set_antialias (Cairo::ANTIALIAS_NONE);
for (int i = 0; i <= 10; i++) {