fix equalizer effect spectrum view lag (#2857)

* fix equalizer effect spectrum view lag #2736

* fix equalizer effect spectrum view lag. changed 10ms to 20ms
This commit is contained in:
Andrés
2016-07-07 00:34:38 -03:00
committed by Tres Finocchiaro
parent c2a406e70f
commit 471f335596

View File

@@ -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 );