From 396275d02cc0e047fd10191bafa8963052708516 Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Thu, 22 Feb 2024 01:58:12 +1030 Subject: [PATCH] Reduce GtkDial circle brightness Provides better contrast between dials in the sea of mixer knobs. --- src/gtkdial.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gtkdial.c b/src/gtkdial.c index 21e2775..438f648 100644 --- a/src/gtkdial.c +++ b/src/gtkdial.c @@ -375,8 +375,8 @@ static int update_dial_properties(GtkDial *dial) { dial->cx + dial->radius / 2, dial->cy + dial->radius / 2 ); - cairo_add_stop_rgb_dim(pat, 0, 0.9, 0.9, 0.9, dim, 1); - cairo_add_stop_rgb_dim(pat, 1, 0.3, 0.3, 0.3, dim, 1); + cairo_add_stop_rgb_dim(pat, 0, 0.6, 0.6, 0.6, dim, 1); + cairo_add_stop_rgb_dim(pat, 1, 0.2, 0.2, 0.2, dim, 1); dial->outline_pattern[dim] = pat; }