diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-07-22 19:06:02 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-22 11:57:47 -0700 |
commit | aa9c2b738427dade65a0a273f57e2773f781e50a (patch) | |
tree | 8c4f18adaefd065ee36735955859b8d3b777aae0 | |
parent | fed9aa80861b6617302e29faf2f0bd48914fe7df (diff) | |
download | subsurface-aa9c2b738427dade65a0a273f57e2773f781e50a.tar.gz |
Add sample pressure to be auto-filled on Seabear import
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index e253ba708..d799bf17f 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -427,6 +427,8 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) headers.append("Sample sensor3 pO₂"); } else if (columnText == "Ceiling") { headers.append("Sample ceiling"); + } else if (columnText == "Tank pressure") { + headers.append("Sample pressure"); } else { // We do not know about this value qDebug() << "Seabear import found an un-handled field: " << columnText; |