diff options
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditorplugin.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index f3375a67c9..713416491f 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -311,6 +311,7 @@ public: { registerRunConfiguration<PythonRunConfiguration>("PythonEditor.RunConfiguration."); addSupportedProjectType(PythonProjectId); + addRunWorkerFactory<SimpleTargetRunner>(ProjectExplorer::Constants::NORMAL_RUN_MODE); } }; @@ -623,12 +624,6 @@ bool PythonEditorPlugin::initialize(const QStringList &arguments, QString *error ProjectManager::registerProjectType<PythonProject>(PythonMimeType); - auto constraint = [](RunConfiguration *runConfiguration) { - auto aspect = runConfiguration->extraAspect<InterpreterAspect>(); - return aspect && !aspect->value().isEmpty(); - }; - RunControl::registerWorker<SimpleTargetRunner>(ProjectExplorer::Constants::NORMAL_RUN_MODE, constraint); - return true; } |