mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Make the scheduler timeout every 1.5s.
This commit is contained in:
parent
9e7b5913b7
commit
c9a8430463
1 changed files with 1 additions and 2 deletions
|
@ -7,7 +7,6 @@
|
||||||
#include "preferences.h"
|
#include "preferences.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#define SCHED_INTERVAL 2500
|
|
||||||
|
|
||||||
class BandwidthScheduler: public QTimer {
|
class BandwidthScheduler: public QTimer {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
@ -59,7 +58,7 @@ public slots:
|
||||||
|
|
||||||
// Timeout regularly to accomodate for external system clock changes
|
// Timeout regularly to accomodate for external system clock changes
|
||||||
// eg from the user or from a timesync utility
|
// eg from the user or from a timesync utility
|
||||||
QTimer::start(SCHED_INTERVAL);
|
QTimer::start(1500);
|
||||||
}
|
}
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue