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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-12-09 06:02:19 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-12-09 06:02:45 +0300
commit30cebf5747a27beee22b9d9ca3a5f97d027b0e2d (patch)
tree6aa0baa5d75818dd6e1f7179e77fbf7516671777 /source/blender/editors/space_node/drawnode.cc
parentcf6be711e2a00bb0836a33c07cf6cd383ee15c4f (diff)
Cleanup: Remove empty node button layout function
Was unused since the first commit: rB658b4c0d56dffbcf1476c2a2a019fa0ecfb79376
Diffstat (limited to 'source/blender/editors/space_node/drawnode.cc')
-rw-r--r--source/blender/editors/space_node/drawnode.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/editors/space_node/drawnode.cc b/source/blender/editors/space_node/drawnode.cc
index f229e7090bb..faed0f0fda0 100644
--- a/source/blender/editors/space_node/drawnode.cc
+++ b/source/blender/editors/space_node/drawnode.cc
@@ -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;