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:
authorTon Roosendaal <ton@blender.org>2010-12-13 18:21:44 +0300
committerTon Roosendaal <ton@blender.org>2010-12-13 18:21:44 +0300
commit0ea96731d90407bec0088c1cf4c843ca34b38464 (patch)
treee04c2206a63874fe8cb66bbac29103983535cac9 /source/blender/editors/space_graph/graph_edit.c
parentd241f2ed9377857c24e6d87feb277ad37bf2bda0 (diff)
Bugfix #25199
Graph editor: submenu for handle type had drawing error. Seems to be the collumns-separator feature for enum properties? No time for debugging that, a 5-item menu doesn't need 2 collumns.
Diffstat (limited to 'source/blender/editors/space_graph/graph_edit.c')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index a371a974be3..a9336046ea5 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -1356,7 +1356,6 @@ EnumPropertyItem graphkeys_handle_type_items[] = {
{HD_FREE, "FREE", 0, "Free", ""},
{HD_VECT, "VECTOR", 0, "Vector", ""},
{HD_ALIGN, "ALIGNED", 0, "Aligned", ""},
- {0, "", 0, "", ""},
{HD_AUTO, "AUTO", 0, "Auto", "Handles that are automatically adjusted upon moving the keyframe. Whole curve"},
{HD_AUTO_ANIM, "ANIM_CLAMPED", 0, "Auto Clamped", "Auto handles clamped to not overshoot. Whole curve"},
{0, NULL, 0, NULL, NULL}};