Choose a different initial color when adding custom colors

Going for pure red 'hides' the hairline at the edge of the
plane. This color makes it nicely visible.
This commit is contained in:
Matthias Clasen 2012-01-30 23:40:13 -05:00
parent efccf87961
commit e1bf3b6650

View File

@ -84,9 +84,9 @@ button_activate (GtkColorSwatch *swatch,
{
GdkRGBA color;
color.red = 1.0;
color.green = 0;
color.blue = 0;
color.red = 0.75;
color.green = 0.25;
color.blue = 0.25;
color.alpha = 1.0;
gtk_color_chooser_set_color (GTK_COLOR_CHOOSER (cc->priv->editor), &color);