From a4c22ad2e7146ccf0319d6b88b4981ffa4d8d9a3 Mon Sep 17 00:00:00 2001 From: Pere Pujal i Carabantes Date: Fri, 7 May 2021 21:41:48 +0200 Subject: [PATCH] Make use of fill_tips strings and translations. --- src/tuxpaint.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 03771f8e2..01ac04762 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -4144,6 +4144,7 @@ static void mainloop(void) else if (cur_tool == TOOL_FILL) { cur_fill = cur_thing; + draw_tux_text(TUX_GREAT, fill_tips[cur_fill], 1); if (do_draw) draw_fills(); @@ -4636,7 +4637,7 @@ static void mainloop(void) update_canvas(x1, y1, x2, y2); } - draw_tux_text(TUX_GREAT, tool_tips[TOOL_FILL], 1); + draw_tux_text(TUX_GREAT, fill_tips[cur_fill], 1); } } else if (cur_tool == TOOL_TEXT || cur_tool == TOOL_LABEL)