[Bf-blender-cvs] [d786b48aab5] master: Cleanup: Remove dead code

Aaron Carlisle noreply at git.blender.org
Wed Dec 29 16:31:26 CET 2021


Commit: d786b48aab5a38177857e4fe48de5024bfb846ce
Author: Aaron Carlisle
Date:   Wed Dec 29 10:31:17 2021 -0500
Branches: master
https://developer.blender.org/rBd786b48aab5a38177857e4fe48de5024bfb846ce

Cleanup: Remove dead code

===================================================================

M	source/blender/editors/space_node/drawnode.cc

===================================================================

diff --git a/source/blender/editors/space_node/drawnode.cc b/source/blender/editors/space_node/drawnode.cc
index 053f2d7e62c..5d6a73b436c 100644
--- a/source/blender/editors/space_node/drawnode.cc
+++ b/source/blender/editors/space_node/drawnode.cc
@@ -136,19 +136,6 @@ static void node_buts_mix_rgb(uiLayout *layout, bContext *UNUSED(C), PointerRNA
 
 static void node_buts_time(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
 {
-#if 0
-  /* XXX no context access here. */
-  bNode *node = (bNode*)ptr->data;
-  CurveMapping *cumap = node->storage;
-
-  if (cumap) {
-    cumap->flag |= CUMA_DRAW_CFRA;
-    if (node->custom1 < node->custom2) {
-      cumap->sample[0] = (float)(CFRA - node->custom1) / (float)(node->custom2 - node->custom1);
-    }
-  }
-#endif
-
   uiTemplateCurveMapping(layout, ptr, "curve", 's', false, false, false, false);
 
   uiLayout *row = uiLayoutRow(layout, true);



More information about the Bf-blender-cvs mailing list