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:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user