From e63d5f40eef3349f26205d42cf7d11f9c01df6d9 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 13 Apr 2020 07:49:21 +0200 Subject: Fix T75667: Use of incorrect terminology in the brush_colors_flip operator - The word 'Flip' is incorrect. 'Swap' or 'Switch' is correct. - In Blender, we use 'primary' & 'secondary' color swatches, not 'foreground' and 'background' --- source/blender/editors/sculpt_paint/paint_image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/sculpt_paint/paint_image.c') diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index 4d4af028570..1a2b44a03b4 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -1288,9 +1288,9 @@ static bool brush_colors_flip_poll(bContext *C) void PAINT_OT_brush_colors_flip(wmOperatorType *ot) { /* identifiers */ - ot->name = "Brush Colors Flip"; + ot->name = "Swap Colors"; ot->idname = "PAINT_OT_brush_colors_flip"; - ot->description = "Toggle foreground and background brush colors"; + ot->description = "Swap primary and secondary brush colors"; /* api callbacks */ ot->exec = brush_colors_flip_exec; -- cgit v1.2.3