summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--desktop-widgets/mainwindow.cpp8
-rw-r--r--desktop-widgets/mainwindow.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp
index dfa3f4c17..ee38bda28 100644
--- a/desktop-widgets/mainwindow.cpp
+++ b/desktop-widgets/mainwindow.cpp
@@ -457,6 +457,13 @@ void MainWindow::enableDisableCloudActions()
ui.actionCloudstoragesave->setEnabled(prefs.cloud_verification_status == qPrefCloudStorage::CS_VERIFIED);
}
+void MainWindow::enableDisableOtherDCsActions()
+{
+ bool nr = number_of_computers(current_dive) > 1;
+ ui.actionNextDC->setEnabled(nr);
+ ui.actionPreviousDC->setEnabled(nr);
+}
+
void MainWindow::setDefaultState() {
setApplicationState("Default");
if (mainTab->getEditMode() != MainTab::NONE) {
@@ -530,6 +537,7 @@ void MainWindow::selectionChanged()
graphics->plotDive(nullptr, false, true);
mainTab->updateDiveInfo();
configureToolbar();
+ enableDisableOtherDCsActions();
MapWidget::instance()->reload();
}
}
diff --git a/desktop-widgets/mainwindow.h b/desktop-widgets/mainwindow.h
index 790c30a74..be35ecf1e 100644
--- a/desktop-widgets/mainwindow.h
+++ b/desktop-widgets/mainwindow.h
@@ -77,6 +77,7 @@ public:
bool inPlanner();
NotificationWidget *getNotificationWidget();
void enableDisableCloudActions();
+ void enableDisableOtherDCsActions();
void setCheckedActionFilterTags(bool checked);
void enterEditState();
void exitEditState();