Cleanup: Remove empty node button layout function

Was unused since the first commit:
rB658b4c0d56dffbcf1476c2a2a019fa0ecfb79376
This commit is contained in:
Aaron Carlisle 2021-12-08 22:02:19 -05:00
parent cf6be711e2
commit 30cebf5747
1 changed files with 0 additions and 8 deletions

View File

@ -2454,11 +2454,6 @@ static void node_composit_buts_planetrackdeform(uiLayout *layout, bContext *C, P
}
}
static void node_composit_buts_cornerpin(uiLayout *UNUSED(layout),
bContext *UNUSED(C),
PointerRNA *UNUSED(ptr))
{
}
static void node_composit_buts_sunbeams(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{
@ -2793,9 +2788,6 @@ static void node_composit_set_butfunc(bNodeType *ntype)
case CMP_NODE_PLANETRACKDEFORM:
ntype->draw_buttons = node_composit_buts_planetrackdeform;
break;
case CMP_NODE_CORNERPIN:
ntype->draw_buttons = node_composit_buts_cornerpin;
break;
case CMP_NODE_SUNBEAMS:
ntype->draw_buttons = node_composit_buts_sunbeams;
break;