From 6698b5e844332a973736725d1e4b943f7b876669 Mon Sep 17 00:00:00 2001 From: Karl Ove Hufthammer Date: Sat, 29 Jul 2017 13:46:08 +0000 Subject: [PATCH] Fixed spelling mistake. --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index da1ea7534..27cbc5323 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -22870,7 +22870,7 @@ static void setup_colors(void){ color_hexes = (Uint8 **) realloc(color_hexes, sizeof(Uint8 *) * (NUM_COLORS + 1)); color_names = (char **) realloc(color_names, sizeof(char *) * (NUM_COLORS + 1)); - color_names[NUM_COLORS] = strdup(gettext("Select a color from your draw.")); + color_names[NUM_COLORS] = strdup(gettext("Select a color from your drawing.")); color_hexes[NUM_COLORS] = (Uint8 *) malloc(sizeof(Uint8) * 3); color_hexes[NUM_COLORS][0] = 0; color_hexes[NUM_COLORS][1] = 0;