aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonrunconfiguration.cpp
diff options
context:
space:
mode:
authorDavid Schulz <[email protected]>2023-06-23 10:15:47 +0200
committerDavid Schulz <[email protected]>2023-06-23 12:06:36 +0000
commitfd04d6afa4d530fc06783a817aea9d724087aff6 (patch)
treedbe1356502fe90b3f2efb08398a76051b6f20206 /src/plugins/python/pythonrunconfiguration.cpp
parent4a17a26a6df1c020e286cb126459e046c7f6ae9e (diff)
ProjectExplorer: always map working directory path to command device
Diffstat (limited to 'src/plugins/python/pythonrunconfiguration.cpp')
-rw-r--r--src/plugins/python/pythonrunconfiguration.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/python/pythonrunconfiguration.cpp b/src/plugins/python/pythonrunconfiguration.cpp
index 42cd8a8e9ae..998a829bc91 100644
--- a/src/plugins/python/pythonrunconfiguration.cpp
+++ b/src/plugins/python/pythonrunconfiguration.cpp
@@ -226,10 +226,6 @@ PythonRunConfiguration::PythonRunConfiguration(Target *target, Id id)
connect(target, &Target::buildSystemUpdated, this, [this]() { d->updateExtraCompilers(); });
currentInterpreterChanged();
- setRunnableModifier([](Runnable &r) {
- r.workingDirectory = r.command.executable().withNewMappedPath(r.workingDirectory); // FIXME: Needed?
- });
-
connect(PySideInstaller::instance(), &PySideInstaller::pySideInstalled, this,
[this](const FilePath &python) {
if (python == aspect<InterpreterAspect>()->currentInterpreter().command)