diff options
Diffstat (limited to 'desktop-widgets/tab-widgets/maintab.cpp')
-rw-r--r-- | desktop-widgets/tab-widgets/maintab.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp index 006603388..9bdf4d35d 100644 --- a/desktop-widgets/tab-widgets/maintab.cpp +++ b/desktop-widgets/tab-widgets/maintab.cpp @@ -589,9 +589,7 @@ void MainTab::rejectChanges() { EditMode lastMode = editMode; - if (lastMode != NONE && current_dive && - (!cylinders_equal(current_dive, &displayed_dive) || - !weightsystems_equal(current_dive, &displayed_dive))) { + if (lastMode != NONE && current_dive && !cylinders_equal(current_dive, &displayed_dive)) { if (QMessageBox::warning(MainWindow::instance(), TITLE_OR_TEXT(tr("Discard the changes?"), tr("You are about to discard your changes.")), QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Discard) != QMessageBox::Discard) { |