summaryrefslogtreecommitdiff
path: root/libs/ardour/crossfade.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/crossfade.cc')
-rw-r--r--libs/ardour/crossfade.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/libs/ardour/crossfade.cc b/libs/ardour/crossfade.cc
index 2f0d66f8fb..86d509ec66 100644
--- a/libs/ardour/crossfade.cc
+++ b/libs/ardour/crossfade.cc
@@ -408,7 +408,7 @@ Crossfade::refresh ()
int32_t new_layer_relation = (int32_t) (_in->layer() - _out->layer());
- if (new_layer_relation * layer_relation < 0) { // different sign, layers rotated
+ if (new_layer_relation * layer_relation < 0) { // different sign, layers rotated
Invalidated (shared_from_this ());
return false;
}
@@ -438,7 +438,6 @@ Crossfade::refresh ()
send_signal = true;
} else {
-
Invalidated (shared_from_this ());
return false;
}
@@ -926,9 +925,3 @@ Crossfade::set_short_xfade_length (nframes_t n)
{
_short_xfade_length = n;
}
-
-void
-Crossfade::invalidate ()
-{
- Invalidated (shared_from_this ()); /* EMIT SIGNAL */
-}