mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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 <dirk@hohndel.org>
This commit is contained in:
parent
67e20fb272
commit
95466cb245
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue