From c4ac0c94879453301db9dfd3411c57f846dbe8c1 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Thu, 17 Mar 2022 01:28:17 -0700 Subject: [PATCH] Tweak description of HSV rainbow color picker --- src/tuxpaint.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 974be6566..315f4e511 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -22420,8 +22420,6 @@ static void render_color_picker_palette(void) } SDL_PushEvent(&event); - - printf("\n"); } @@ -26257,8 +26255,8 @@ static void setup_colors(void) NUM_COLORS++; /* Add "Color Picker" color: */ - - color_names[NUM_COLORS] = strdup(gettext("Pick a color. The square shows all hues at varying levels of saturation. Use the slider to change the value.")); + /* (This is an attempt to describe an HSV color picker in extremely basic terms!) */ + color_names[NUM_COLORS] = strdup(gettext("Pick a color. Hues go top to bottom. Saturation/intensity goes left (pale) to right (pure). Value (lightness/darkness): grey bar.")); color_hexes[NUM_COLORS] = (Uint8 *) malloc(sizeof(Uint8) * 3); color_hexes[NUM_COLORS][0] = 255; color_hexes[NUM_COLORS][1] = 255;