aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-08-20 14:36:29 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2020-08-24 09:05:25 +0000
commita8b208bfae88da86dc3b620846929bcd8a115788 (patch)
tree336147d4e3fe2b1de8664a69c6d9b6bd0de8bcda
parent1d53e37b6de255b2abcf62dedcac83128970f1ba (diff)
Revert "BuildDirectoryAspect: Print non-existing directories in red"
It's not an error that a build directory does not exist. This reverts commit 2e4915bdb96bc1d5e5bed6f38e13b87db68a97c5. Fixes: QTCREATORBUG-24503 Change-Id: I6138917885b6adbfaef6c49e54a3ea9900ed6b2e Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/projectexplorer/buildaspects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildaspects.cpp b/src/plugins/projectexplorer/buildaspects.cpp
index 0d8a3c3bc8..bcf200a252 100644
--- a/src/plugins/projectexplorer/buildaspects.cpp
+++ b/src/plugins/projectexplorer/buildaspects.cpp
@@ -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()