From ce3dc87a60e193a7fcce89eddf85a5a32d49d11b Mon Sep 17 00:00:00 2001 From: Markus Schmidt Date: Tue, 10 Mar 2015 18:18:43 +0100 Subject: [PATCH] Transient Designer: bug with initial filter curve --- src/modules_comp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules_comp.cpp b/src/modules_comp.cpp index d114c24..512745d 100644 --- a/src/modules_comp.cpp +++ b/src/modules_comp.cpp @@ -2779,7 +2779,7 @@ bool transientdesigner_audio_module::get_gridline(int index, int subindex, int p bool transientdesigner_audio_module::get_layers(int index, int generation, unsigned int &layers) const { if (index == param_hipass) { - layers = (redraw ? LG_CACHE_GRAPH : LG_NONE) | (generation ? LG_NONE : LG_CACHE_GRID); + layers = (redraw || !generation ? LG_CACHE_GRAPH : LG_NONE) | (generation ? LG_NONE : LG_CACHE_GRID); return true; } layers = LG_REALTIME_GRAPH | (generation ? 0 : LG_CACHE_GRID); -- 2.11.4.GIT