Преглед на файлове

cmake-gui: Wait for configure/generate thread to complete before exiting.

A prevous fix to interrupt granularity makes it so we don't have to wait very long.
Clinton Stimpson преди 13 години
родител
ревизия
2c050a2e11
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Source/QtDialog/CMakeSetupDialog.cxx

+ 1 - 1
Source/QtDialog/CMakeSetupDialog.cxx

@@ -288,7 +288,7 @@ CMakeSetupDialog::~CMakeSetupDialog()
 
   // wait for thread to stop
   this->CMakeThread->quit();
-  this->CMakeThread->wait(2000);
+  this->CMakeThread->wait();
 }
 
 bool CMakeSetupDialog::prepareConfigure()