diff options
-rw-r--r-- | profile-widget/profilewidget2.cpp | 2 | ||||
-rw-r--r-- | qt-models/divepicturemodel.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp index b40980e5f..b7b6057fe 100644 --- a/profile-widget/profilewidget2.cpp +++ b/profile-widget/profilewidget2.cpp @@ -2000,7 +2000,7 @@ void ProfileWidget2::plotPictures() double x, y, lastX = -1.0, lastY = -1.0; DivePictureModel *m = DivePictureModel::instance(); - for (int i = m->rowDDStart; i <= m->rowDDEnd; i++) { + for (int i = m->rowDDStart; i < m->rowDDEnd; i++) { int offsetSeconds = m->index(i, 1).data(Qt::UserRole).value<int>(); // it's a correct picture, but doesn't have a timestamp: only show on the widget near the // information area. diff --git a/qt-models/divepicturemodel.cpp b/qt-models/divepicturemodel.cpp index 994eb674e..d886fd767 100644 --- a/qt-models/divepicturemodel.cpp +++ b/qt-models/divepicturemodel.cpp @@ -54,6 +54,7 @@ void DivePictureModel::updateDivePictures() beginRemoveRows(QModelIndex(), 0, pictures.count() - 1); pictures.clear(); endRemoveRows(); + rowDDStart = rowDDEnd = 0; } // if the dive_table is empty, quit @@ -69,7 +70,7 @@ void DivePictureModel::updateDivePictures() FOR_EACH_PICTURE(dive) pictures.push_back({picture, picture->filename, QImage(), picture->offset.seconds}); if (dive->id == displayed_dive.id) - rowDDEnd = pictures.count() - 1; + rowDDEnd = pictures.count(); } } QtConcurrent::blockingMap(pictures, scaleImages); |