diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index e2a54a888b..4ac1d5cf62 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -118,6 +118,9 @@ CMakeSetupDialog::CMakeSetupDialog() this->BinaryDirectory->setCompleter(new QCMakeFileCompleter(this, true)); this->SourceDirectory->setCompleter(new QCMakeFileCompleter(this, true)); + // fixed pitch font in output window + QFont outputFont("Courier"); + this->Output->setFont(outputFont); // start the cmake worker thread this->CMakeThread = new QCMakeThread(this);