mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
Disable automatic execution of Python Data Processors
They are only partially supported currently and this confuses users. See #4095 for details.
This commit is contained in:
@@ -99,6 +99,9 @@ DataProcessorFactory::autoProcess(RideFile *ride, QString mode, QString op)
|
||||
i.toFront();
|
||||
while (i.hasNext()) {
|
||||
i.next();
|
||||
|
||||
if (!i.value()->isCoreProcessor()) continue; // Python DP are not supported in automatic mode
|
||||
|
||||
QString configsetting = QString("dp/%1/apply").arg(i.key());
|
||||
|
||||
// if we're being run manually, run all that are defined
|
||||
|
||||
@@ -2716,7 +2716,7 @@ ProcessorPage::ProcessorPage(Context *context) : context(context)
|
||||
{
|
||||
// get the available processors
|
||||
const DataProcessorFactory &factory = DataProcessorFactory::instance();
|
||||
processors = factory.getProcessors();
|
||||
processors = factory.getProcessors(true);
|
||||
|
||||
QGridLayout *mainLayout = new QGridLayout(this);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user