mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-28 04:44:36 +03: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
|
||||
refresher = new QTimer(this);
|
||||
connect(refresher, SIGNAL(timeout()), this, SLOT(updateLists()));
|
||||
refresher->start(2000);
|
||||
refresher->start(1500);
|
||||
previewProcess = new QProcess(this);
|
||||
connect(previewProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(cleanTempPreviewFile(int, QProcess::ExitStatus)));
|
||||
// Accept drag 'n drops
|
||||
|
|
Loading…
Reference in a new issue