From eb8e33e311ef7e75358467794254b79adee0628d Mon Sep 17 00:00:00 2001 From: Bruno Herbelin Date: Thu, 23 Dec 2021 22:16:16 +0100 Subject: [PATCH] Correct call to Source Activation (inheritance) --- Source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source.cpp b/Source.cpp index 3be5441..6800596 100644 --- a/Source.cpp +++ b/Source.cpp @@ -546,7 +546,7 @@ void Source::setActive (bool on) void Source::setActive (float threshold) { - Source::setActive( glm::length( glm::vec2(groups_[View::MIXING]->translation_) ) < threshold ); + setActive( glm::length( glm::vec2(groups_[View::MIXING]->translation_) ) < threshold ); } void Source::setLocked (bool on)