From ddeb8df894119a2523dbb48e25de89983bbcc21d Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 8 Mar 2018 12:12:05 +0100 Subject: [PATCH] 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 --- .../projectexplorer/customexecutableconfigurationwidget.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp b/src/plugins/projectexplorer/customexecutableconfigurationwidget.cpp index e5aef0395ff..3a2446e25e3 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);