summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-03-08 12:12:05 +0100
committerEike Ziller <eike.ziller@qt.io>2018-03-20 11:56:17 +0000
commitddeb8df894119a2523dbb48e25de89983bbcc21d (patch)
tree7bad8f017532b01fc3ed964a4f6cf2e4012eac4a
parent61598eca15e14af64c20d314db382973dfccb2d2 (diff)
downloadqt-creator-ddeb8df894119a2523dbb48e25de89983bbcc21d.tar.gz
CustomExecutable: Improve tool tip on working directory
Do not set a base path on the path chooser. There shouldn't be a base path since that effects the path chooser's expanded path, which is never used for the working directory. Task-number: QTCREATORBUG-13576 Change-Id: Ie7735dc726b442d97b2108e8d340d904c70aa5a6 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
-rw-r--r--src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp b/src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp
index e5aef0395f..3a2446e25e 100644
--- a/src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp
+++ b/src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp
@@ -73,7 +73,6 @@ CustomExecutableConfigurationWidget::CustomExecutableConfigurationWidget(CustomE
m_workingDirectory = new PathChooser(this);
m_workingDirectory->setHistoryCompleter(QLatin1String("Qt.WorkingDir.History"));
m_workingDirectory->setExpectedKind(PathChooser::Directory);
- m_workingDirectory->setBaseFileName(rc->target()->project()->projectDirectory());
layout->addRow(tr("Working directory:"), m_workingDirectory);