aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-12-30 20:16:25 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-12-30 16:11:14 -0800
commitfed79490bffc01486463f319843c242865f0a1ed (patch)
tree696107da97a5bd881efb3f258a2bc688f1245f86 /qt-ui/profile
parentf3446fadc164b5531847bf591b80d46a17f9c393 (diff)
downloadsubsurface-fed79490bffc01486463f319843c242865f0a1ed.tar.gz
Add text for the heart beat data on the table
This was missing on the UI and it was really hard to guess what it was. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r--qt-ui/profile/diveplotdatamodel.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp
index 51aea1b59..abffa4521 100644
--- a/qt-ui/profile/diveplotdatamodel.cpp
+++ b/qt-ui/profile/diveplotdatamodel.cpp
@@ -127,6 +127,8 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation,
return tr("pO₂");
case AMBPRESSURE:
return tr("Ambient pressure");
+ case HEARTBEAT:
+ return tr("Heart Beat");
}
if (role == Qt::DisplayRole && section >= TISSUE_1 && section <= TISSUE_16) {
return QString("Ceiling: %1").arg(section - TISSUE_1);