]> git.tdb.fi Git - ext/subsurface.git/blobdiff - divelist.c
Select the first dive after filling the dive list
[ext/subsurface.git] / divelist.c
index f1af80cea240c64a41b73f7eea7e5ac906871cd3..8967d3612436a8eaefe08acf8f8a49d5feb38dc5 100644 (file)
@@ -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)