Enable multithreaded loader by default on multicore machines

This commit is contained in:
Mark Watkins 2011-09-11 21:03:37 +10:00
parent 1b2508b0ec
commit 842222c386

View File

@ -123,7 +123,10 @@ MainWindow::MainWindow(QWidget *parent) :
ui->logText->hide();
}
if (!pref.Exists("EnableMultithreading")) pref["EnableMultithreading"]=false;
bool usethreading=QThread::idealThreadCount()>1;
// This speeds up the second part of importing craploads.. later it will speed up the first part too.
if (!pref.Exists("EnableMultithreading")) pref["EnableMultithreading"]=usethreading;
ui->actionEnable_Multithreading->setChecked(pref["EnableMultithreading"].toBool());