From 471f335596b43eaa6fcb9ae392784dd3c79c2f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s?= Date: Thu, 7 Jul 2016 00:34:38 -0300 Subject: [PATCH] fix equalizer effect spectrum view lag (#2857) * fix equalizer effect spectrum view lag #2736 * fix equalizer effect spectrum view lag. changed 10ms to 20ms --- plugins/Eq/EqSpectrumView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Eq/EqSpectrumView.h b/plugins/Eq/EqSpectrumView.h index 1d9ad5ea2..b1a084b5c 100644 --- a/plugins/Eq/EqSpectrumView.h +++ b/plugins/Eq/EqSpectrumView.h @@ -144,7 +144,7 @@ public: setFixedSize( 400, 200 ); QTimer *timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(update())); - timer->start(100); + timer->start(20); setAttribute( Qt::WA_TranslucentBackground, true ); m_skipBands = MAX_BANDS * 0.5; float totalLength = log10( 20000 );