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:
authorJulian Eisel <julian@blender.org>2020-06-09 21:35:40 +0300
committerJulian Eisel <julian@blender.org>2020-06-09 21:42:22 +0300
commitd1932a8ed6001c120149ce4dd1be6a0415d66f28 (patch)
treedd7270150169f3b6bf6fa4d63679d605bfe8e1b3 /source/blender/modifiers/intern/MOD_ui_common.c
parent819ebc990144c516e1ae393b6e6ecdf98a184811 (diff)
Fix missing animation decorators for pointer buttons
Also, remove manually placed decorator for vertex groups in modifiers. This was only needed because of this bug, and the layout was slightly misaligned.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_ui_common.c')
-rw-r--r--source/blender/modifiers/intern/MOD_ui_common.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/modifiers/intern/MOD_ui_common.c b/source/blender/modifiers/intern/MOD_ui_common.c
index 973afe5fef6..cc0d3d8ccee 100644
--- a/source/blender/modifiers/intern/MOD_ui_common.c
+++ b/source/blender/modifiers/intern/MOD_ui_common.c
@@ -172,9 +172,6 @@ void modifier_vgroup_ui(uiLayout *layout,
uiLayoutSetPropDecorate(sub, false);
uiItemR(sub, ptr, invert_vgroup_prop, 0, "", ICON_ARROW_LEFTRIGHT);
}
- if (uiLayoutGetPropDecorate(layout)) {
- uiItemL(row, "", ICON_BLANK1);
- }
}
/**