]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Disable sorting by dive number
authorDirk Hohndel <dirk@hohndel.org>
Sun, 23 Oct 2011 21:38:33 +0000 (14:38 -0700)
committerDirk Hohndel <dirk@hohndel.org>
Sun, 23 Oct 2011 21:38:33 +0000 (14:38 -0700)
This is based on Linus idea and code - just adding it to my UI branch in
case he didn't actually add it to his code...

It makes no sense to sort by dive number - every sane person will have
dive numbers be chronological; so they can sort by date instead.

But removing this option wastes less space and makes the dive list look
much better

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
divelist.c

index 948332f4e91f5cbd59a9c934050a178ef08980a9..3ddfb6582dea8aedb2a44ef6e257f7452e42f0e7 100644 (file)
@@ -541,6 +541,7 @@ GtkWidget *dive_list_create(void)
        gtk_widget_set_size_request(dive_list.tree_view, 200, 200);
 
        dive_list.nr = divelist_column(&dive_list, DIVE_NR, "#", NULL, PANGO_ALIGN_RIGHT, TRUE);
+       gtk_tree_view_column_set_sort_column_id(dive_list.nr, -1);
        dive_list.date = divelist_column(&dive_list, DIVE_DATE, "Date", date_data_func, PANGO_ALIGN_LEFT, TRUE);
        dive_list.depth = divelist_column(&dive_list, DIVE_DEPTH, "ft", depth_data_func, PANGO_ALIGN_RIGHT, TRUE);
        dive_list.duration = divelist_column(&dive_list, DIVE_DURATION, "min", duration_data_func, PANGO_ALIGN_RIGHT, TRUE);