From f2a8cf2cde869db504e8364a87b7a2d910f2d997 Mon Sep 17 00:00:00 2001 From: Jamie Kimberley Date: Sun, 15 Jan 2012 18:06:14 -0500 Subject: [PATCH] Add other TRIMP metrics to performance manager-v3. Add the ability to use the TRIMP 100 and TRIMP ZONAL metrics in the performace manager. --- src/PerformanceManagerWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PerformanceManagerWindow.cpp b/src/PerformanceManagerWindow.cpp index c65d84819..e831be07a 100644 --- a/src/PerformanceManagerWindow.cpp +++ b/src/PerformanceManagerWindow.cpp @@ -54,6 +54,8 @@ PerformanceManagerWindow::PerformanceManagerWindow(MainWindow *mainWindow) : metricCombo->addItem(tr("Use BikeScore"), "skiba_bike_score"); metricCombo->addItem(tr("Use DanielsPoints"), "daniels_points"); metricCombo->addItem(tr("Use TRIMP"), "trimp_points"); + metricCombo->addItem(tr("Use TRIMP 100"), "trimp_100_points"); + metricCombo->addItem(tr("Use Trimp Zonal"), "trimp_zonal_points"); QString metricName = appsettings->value(this, GC_PERF_MAN_METRIC, "skiba_bike_score").toString(); for (int i = 0; i < metricCombo->count(); ++i) {