Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-06-28 17:51:39 +0300
committerHans Goudey <h.goudey@me.com>2021-06-28 17:51:39 +0300
commit0afe4e81cbb2a0f8f26a2a5c2e5cb5e6c876f20e (patch)
tree43581da2fe274ce29a30f2ef0f302c91b3136251 /source/blender/makesrna
parent222c39fe7052c0c44eccdca630c5ca273da4d3df (diff)
Fix name of UI emboss RNA enum item
This was a stupid mistake in my original commit that added this item. While this is an API breakage, the name is simply wrong, and it is only 6 months old, and slightly niche. Differential Revision: https://developer.blender.org/D11701
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c
index 8f596ec6a5c..acf580e3ddf 100644
--- a/source/blender/makesrna/intern/rna_ui.c
+++ b/source/blender/makesrna/intern/rna_ui.c
@@ -1231,7 +1231,7 @@ static void rna_def_ui_layout(BlenderRNA *brna)
{UI_EMBOSS_PULLDOWN, "PULLDOWN_MENU", 0, "Pulldown Menu", "Draw pulldown menu style"},
{UI_EMBOSS_RADIAL, "RADIAL_MENU", 0, "Radial Menu", "Draw radial menu style"},
{UI_EMBOSS_NONE_OR_STATUS,
- "UI_EMBOSS_NONE_OR_STATUS",
+ "NONE_OR_STATUS",
0,
"None or Status",
"Draw with no emboss unless the button has a coloring status like an animation state"},