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.
This commit is contained in:
Ton Roosendaal 2010-12-13 15:21:44 +00:00
parent d241f2ed93
commit 0ea96731d9
2 changed files with 1 additions and 2 deletions

@ -756,7 +756,7 @@ void uiItemsFullEnumO(uiLayout *layout, const char *opname, const char *propname
bt= block->buttons.last;
bt->flag= UI_TEXT_LEFT;
}
else
else /* XXX bug here, collums draw bottom item badly */
uiItemS(column);
}
}

@ -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}};