From fb6e8a8a13917a78c66238f8357d8dc6f5a6f0ab Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Tue, 29 Sep 2020 00:40:40 +1000 Subject: [PATCH] volume: disable keyframing on the sample input --- app/node/audio/volume/volume.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/app/node/audio/volume/volume.cpp b/app/node/audio/volume/volume.cpp index 38a6cc7da..4b403118b 100644 --- a/app/node/audio/volume/volume.cpp +++ b/app/node/audio/volume/volume.cpp @@ -25,6 +25,7 @@ OLIVE_NAMESPACE_ENTER VolumeNode::VolumeNode() { samples_input_ = new NodeInput("samples_in", NodeParam::kSamples); + samples_input_->set_is_keyframable(false); AddInput(samples_input_); volume_input_ = new NodeInput("volume_in", NodeParam::kFloat, 1.0);