ENH: Use fixed pitch font in output window.

This commit is contained in:
Clinton Stimpson 2008-03-07 11:50:11 -05:00
parent 55eede4b13
commit 8fb74f97ef
1 changed files with 3 additions and 0 deletions

View File

@ -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);