mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 21:03:23 +00:00
Select the first dive after filling the dive list
We should always strive to have a dive selected, so pick the first one (that was how the dive list logic worked anyway, it just wasn't truly selected at the tree-view level, so it wasn't *visibly* the selected dive). Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e11523110b
commit
2df6149080
1 changed files with 5 additions and 0 deletions
|
@ -403,6 +403,11 @@ static void fill_dive_list(void)
|
|||
}
|
||||
|
||||
update_dive_list_units();
|
||||
if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(dive_list.model), &iter)) {
|
||||
GtkTreeSelection *selection;
|
||||
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(dive_list.tree_view));
|
||||
gtk_tree_selection_select_iter(selection, &iter);
|
||||
}
|
||||
}
|
||||
|
||||
void dive_list_update_dives(void)
|
||||
|
|
Loading…
Add table
Reference in a new issue