Revert "BuildDirectoryAspect: Print non-existing directories in red"

It's not an error that a build directory does not exist.
This reverts commit 2e4915bdb9.

Fixes: QTCREATORBUG-24503
Change-Id: I6138917885b6adbfaef6c49e54a3ea9900ed6b2e
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2020-08-20 14:36:29 +02:00
parent 1d53e37b6d
commit a8b208bfae

View File

@@ -51,7 +51,7 @@ BuildDirectoryAspect::BuildDirectoryAspect() : d(new Private)
setSettingsKey("ProjectExplorer.BuildConfiguration.BuildDirectory");
setLabelText(tr("Build directory:"));
setDisplayStyle(PathChooserDisplay);
setExpectedKind(Utils::PathChooser::ExistingDirectory);
setExpectedKind(Utils::PathChooser::Directory);
}
BuildDirectoryAspect::~BuildDirectoryAspect()