From 025df50f61b68a97fcc872cfd5e0e671b81cbeeb Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 12 Feb 2019 21:28:04 +0100 Subject: Fix T51771: UI Messages: Reserve 'Normal' to its geometric meaning. Using 'Regular' instead for the common meaning, this avoids having to add some i18n context disambiguation... --- source/blender/makesrna/intern/rna_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_ui.c') diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 6006bc8119d..e95f537e027 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -1039,7 +1039,7 @@ static void rna_def_ui_layout(BlenderRNA *brna) }; static const EnumPropertyItem emboss_items[] = { - {UI_EMBOSS, "NORMAL", 0, "Normal", "Draw standard button emboss style"}, + {UI_EMBOSS, "NORMAL", 0, "Regular", "Draw standard button emboss style"}, {UI_EMBOSS_NONE, "NONE", 0, "None", "Draw only text and icons"}, {UI_EMBOSS_PULLDOWN, "PULLDOWN_MENU", 0, "Pulldown Menu", "Draw pulldown menu style"}, {UI_EMBOSS_RADIAL, "RADIAL_MENU", 0, "Radial Menu", "Draw radial menu style"}, -- cgit v1.2.3