Brighten the diagonal line in curves, tone down the gridlines. Fixes #5687.
This commit is contained in:
@@ -565,7 +565,7 @@ button.text-button.toggle:hover:checked {
|
|||||||
.drawingarea {
|
.drawingarea {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
background-color: #2A2A2A;
|
background-color: #2A2A2A;
|
||||||
border: 0.0833333333333333em solid #1D1D1D;
|
border: 0.0833333333333333em solid #888888;
|
||||||
}
|
}
|
||||||
.drawingarea:disabled {
|
.drawingarea:disabled {
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
|
@@ -323,7 +323,7 @@ void MyDiagonalCurve::draw (int handle)
|
|||||||
// draw the grid lines:
|
// draw the grid lines:
|
||||||
cr->set_line_width (1.0 * s);
|
cr->set_line_width (1.0 * s);
|
||||||
c = style->get_border_color(state);
|
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);
|
cr->set_antialias (Cairo::ANTIALIAS_NONE);
|
||||||
|
|
||||||
for (int i = 0; i <= 10; i++) {
|
for (int i = 0; i <= 10; i++) {
|
||||||
|
Reference in New Issue
Block a user