summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qt-ui/models.cpp4
-rw-r--r--qt-ui/printlayout.cpp6
2 files changed, 6 insertions, 4 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index 8e10452fd..52ba40d9c 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -1886,7 +1886,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
if (row == 0) {
if (col == 0)
return tr("Dive #%1 - %2").arg(dive->number).arg(di.displayDate());
- if (col == 4) {
+ if (col == 3) {
QString unit = (get_units()->length == units::METERS) ? "m" : "ft";
return tr("Max depth: %1 %2").arg(di.displayDepth()).arg(unit);
}
@@ -1894,7 +1894,7 @@ QVariant ProfilePrintModel::data(const QModelIndex &index, int role) const
if (row == 1) {
if (col == 0)
return QString(dive->location);
- if (col == 4)
+ if (col == 3)
return QString(tr("Duration: %1 min")).arg(di.displayDuration());
}
// headings
diff --git a/qt-ui/printlayout.cpp b/qt-ui/printlayout.cpp
index bae468c44..dd23d1004 100644
--- a/qt-ui/printlayout.cpp
+++ b/qt-ui/printlayout.cpp
@@ -252,8 +252,10 @@ QTableView *PrintLayout::createProfileTable(ProfilePrintModel *model, const int
const int cols = model->columnCount();
const int rows = model->rowCount();
// info on top
- table->setSpan(0, 0, 1, 4);
- table->setSpan(1, 0, 1, 4);
+ table->setSpan(0, 0, 1, 3);
+ table->setSpan(1, 0, 1, 3);
+ table->setSpan(0, 3, 1, 2);
+ table->setSpan(1, 3, 1, 2);
// gas used
table->setSpan(2, 0, 1, 2);
table->setSpan(3, 0, 1, 2);