From 8fe9ddd599bcfda207e7b023c2e7de34957b0da7 Mon Sep 17 00:00:00 2001 From: Martin15135215 <110968398+Martin15135215@users.noreply.github.com> Date: Wed, 14 Sep 2022 15:44:22 +0200 Subject: [PATCH] Small Change https://github.com/IfcOpenShell/IfcOpenShell/issues/2409#issuecomment-1246767831 --- src/blenderbim/blenderbim/bim/module/sequence/operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/sequence/operator.py b/src/blenderbim/blenderbim/bim/module/sequence/operator.py index af673ad893..8eb24fb4cc 100644 --- a/src/blenderbim/blenderbim/bim/module/sequence/operator.py +++ b/src/blenderbim/blenderbim/bim/module/sequence/operator.py @@ -1151,14 +1151,14 @@ class VisualiseWorkScheduleDateRange(bpy.types.Operator): def animate_input(self, obj, product_frame): if product_frame["type"] in ["LOGISTIC", "MOVE", "DISPOSAL"]: self.animate_movement_from(obj, product_frame) + elif product_frame["type"] in ["DEMOLITION", "DISMANTLE", "DISPOSAL", "REMOVAL"]: + self.animate_destruction(obj, product_frame) else: self.animate_consumption(obj, product_frame) def animate_output(self, obj, product_frame): if product_frame["type"] in ["CONSTRUCTION", "INSTALLATION", "NOTDEFINED"]: self.animate_creation(obj, product_frame) - elif product_frame["type"] in ["DEMOLITION", "DISMANTLE", "DISPOSAL", "REMOVAL"]: - self.animate_destruction(obj, product_frame) elif product_frame["type"] in ["ATTENDANCE", "MAINTENANCE", "OPERATION", "RENOVATION"]: self.animate_operation(obj, product_frame) elif product_frame["type"] in ["LOGISTIC", "MOVE", "DISPOSAL"]: