From 95466cb245608a92d3e6005f2da577a613914336 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 24 Jul 2014 08:20:34 -0700 Subject: Sort dive table after adding a dive The dive might not be the newest dive in the dive list. Fixes #637 Signed-off-by: Dirk Hohndel --- qt-ui/maintab.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 95143ed11..bf108a9c1 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -646,7 +646,7 @@ void MainTab::acceptChanges() MainWindow::instance()->dive_list()->unselectDives(); selected_dive = get_divenr(added_dive); amount_selected = 1; - } else if (MainWindow::instance() && MainWindow::instance()->dive_list()->selectedTrips().count() == 1) { + } else if (MainWindow::instance() && MainWindow::instance()->dive_list()->selectedTrips().count() == 1) { /* now figure out if things have changed */ if (!same_string(displayed_dive.notes, current_dive->divetrip->notes)) { current_dive->divetrip->notes = strdup(displayed_dive.notes); @@ -750,6 +750,7 @@ void MainTab::acceptChanges() // now let's resort the dive list and make sure the newly added dive is still selected selected_dive = -1; amount_selected = 0; + sort_table(&dive_table); MainWindow::instance()->dive_list()->reload(DiveTripModel::CURRENT, true); int newDiveNr = get_divenr(get_dive_by_uniq_id(addedId)); MainWindow::instance()->dive_list()->selectDive(newDiveNr, true); -- cgit v1.2.3-70-g09d2