mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
- Refresh list every 1500ms instead of 2000ms
This commit is contained in:
parent
73c247fe10
commit
a9f1bd4f74
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for
|
||||||
// Start download list refresher
|
// Start download list refresher
|
||||||
refresher = new QTimer(this);
|
refresher = new QTimer(this);
|
||||||
connect(refresher, SIGNAL(timeout()), this, SLOT(updateLists()));
|
connect(refresher, SIGNAL(timeout()), this, SLOT(updateLists()));
|
||||||
refresher->start(2000);
|
refresher->start(1500);
|
||||||
previewProcess = new QProcess(this);
|
previewProcess = new QProcess(this);
|
||||||
connect(previewProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(cleanTempPreviewFile(int, QProcess::ExitStatus)));
|
connect(previewProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(cleanTempPreviewFile(int, QProcess::ExitStatus)));
|
||||||
// Accept drag 'n drops
|
// Accept drag 'n drops
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue