diff options
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveInformation.cpp | 2 | ||||
-rw-r--r-- | desktop-widgets/tab-widgets/maintab.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveInformation.cpp b/desktop-widgets/tab-widgets/TabDiveInformation.cpp index 8a6739627..6d3d234d6 100644 --- a/desktop-widgets/tab-widgets/TabDiveInformation.cpp +++ b/desktop-widgets/tab-widgets/TabDiveInformation.cpp @@ -350,7 +350,7 @@ void TabDiveInformation::divesChanged(const QVector<dive *> &dives, DiveField fi // TODO: The profile should recognize itself when the dive mode changed. // It seem awkward to route this via the dive-information tab. if (replot) - MainWindow::instance()->graphics->replot(); + MainWindow::instance()->graphics->plotDive(current_dive, true); } void TabDiveInformation::on_visibility_valueChanged(int value) diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp index bf277d74d..00f9d6ad4 100644 --- a/desktop-widgets/tab-widgets/maintab.cpp +++ b/desktop-widgets/tab-widgets/maintab.cpp @@ -511,7 +511,7 @@ void MainTab::acceptChanges() if (editMode) { MainWindow::instance()->diveList->reload(); MainWindow::instance()->refreshDisplay(); - MainWindow::instance()->graphics->replot(); + MainWindow::instance()->graphics->plotDive(current_dive, true); } else { MainWindow::instance()->refreshDisplay(); } @@ -547,7 +547,7 @@ void MainTab::rejectChanges() updateDiveInfo(); // show the profile and dive info - MainWindow::instance()->graphics->replot(); + MainWindow::instance()->graphics->plotDive(current_dive, true); MainWindow::instance()->setEnabledToolbar(true); ui.editDiveSiteButton->setEnabled(!ui.location->text().isEmpty()); } |