diff options
author | Chris Schlaeger <chris@linux.com> | 2016-06-28 21:46:59 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2016-06-28 21:46:59 +0200 |
commit | cb5e4ebb1f079b6534ff5464b542e4022d645d11 (patch) | |
tree | 8f7cbeaa773200b8b958f809238a7de7fd5b7403 | |
parent | 62f4bba35af74b031c183be2a91527fc6ab4f5d0 (diff) | |
download | postrunner-cb5e4ebb1f079b6534ff5464b542e4022d645d11.zip |
Fix: Clarify data source labels.
-rw-r--r-- | lib/postrunner/DataSources.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/postrunner/DataSources.rb b/lib/postrunner/DataSources.rb index 1aca80c..3db5547 100644 --- a/lib/postrunner/DataSources.rb +++ b/lib/postrunner/DataSources.rb @@ -51,8 +51,9 @@ module PostRunner t = FlexiTable.new t.enable_frame(false) t.body - t.row([ 'Time', 'Distance', 'Mode', 'Distance', 'Speed', - 'Cadence', 'Elevation', 'Heart Rate', 'Power', 'Calories' ]) + t.row([ 'Time', 'Distance', 'Mode', 'Speed Source', 'Distance Source', + 'Cadence Source', 'Elevation Source', 'Heart Rate Source', + 'Power Source', 'Calories Source' ]) start_time = session.start_time @fit_activity.data_sources.each do |source| t.cell(secsToHMS(source.timestamp - start_time)) |