summaryrefslogtreecommitdiffstats
path: root/profile-widget
diff options
context:
space:
mode:
Diffstat (limited to 'profile-widget')
-rw-r--r--profile-widget/profilewidget2.cpp5
-rw-r--r--profile-widget/profilewidget2.h1
2 files changed, 4 insertions, 2 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp
index 0b126e6b6..310652b75 100644
--- a/profile-widget/profilewidget2.cpp
+++ b/profile-widget/profilewidget2.cpp
@@ -1351,7 +1351,8 @@ void ProfileWidget2::deleteCurrentDC()
mark_divelist_changed(true);
// we need to force it since it's likely the same dive and same dc_number - but that's a different dive computer now
MainWindow::instance()->graphics()->plotDive(0, true);
- MainWindow::instance()->refreshDisplay();
+
+ emit refreshDisplay(true);
}
void ProfileWidget2::makeFirstDC()
@@ -1363,7 +1364,7 @@ void ProfileWidget2::makeFirstDC()
// dive list may change).
// As a side benefit, this returns focus to the dive list.
dc_number = 0;
- MainWindow::instance()->refreshDisplay();
+ emit refreshDisplay(true);
}
void ProfileWidget2::hideEvents()
diff --git a/profile-widget/profilewidget2.h b/profile-widget/profilewidget2.h
index c102bbcf3..5fc6e8d4b 100644
--- a/profile-widget/profilewidget2.h
+++ b/profile-widget/profilewidget2.h
@@ -92,6 +92,7 @@ signals:
void showError();
void enableShortcuts();
void disableShortcuts(bool paste);
+ void refreshDisplay(bool recreateDivelist);
public
slots: // Necessary to call from QAction's signals.