Correct location of 'text' button in frame-node

This commit is contained in:
Campbell Barton 2015-01-30 13:41:07 +11:00
parent d56c9fb420
commit c6d4a3f3ba
2 changed files with 1 additions and 1 deletions

@ -299,7 +299,6 @@ class NODE_PT_active_node_generic(Panel):
layout.prop(node, "name", icon='NODE')
layout.prop(node, "label", icon='NODE')
layout.prop(node, "text")
class NODE_PT_active_node_color(Panel):

@ -531,6 +531,7 @@ static void node_buts_frame_ex(uiLayout *layout, bContext *UNUSED(C), PointerRNA
{
uiItemR(layout, ptr, "label_size", 0, IFACE_("Label Size"), ICON_NONE);
uiItemR(layout, ptr, "shrink", 0, IFACE_("Shrink"), ICON_NONE);
uiItemR(layout, ptr, "text", 0, NULL, ICON_NONE);
}