Fix #819: Turning off mouseover info
authorColin Clark <colin.clark@cclark.uk>
Fri, 9 Oct 2020 15:50:32 +0000 (16:50 +0100)
committerColin Clark <colin.clark@cclark.uk>
Fri, 9 Oct 2020 15:50:32 +0000 (16:50 +0100)
https://github.com/BestImageViewer/geeqie/issues/819

Showing file data as a tooltip in list view seems redundant, as that
data is visible anyway.
So the tooltip is removed.

src/view_file/view_file_list.c

index fddca37..76c290c 100644 (file)
@@ -2065,7 +2065,7 @@ ViewFile *vflist_new(ViewFile *vf, FileData *dir_fd)
        gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(vf->listview), FALSE);
        gtk_tree_view_set_enable_search(GTK_TREE_VIEW(vf->listview), FALSE);
 
-       gtk_tree_view_set_tooltip_column(GTK_TREE_VIEW(vf->listview), FILE_COLUMN_FORMATTED);
+       gtk_tree_view_set_tooltip_column(GTK_TREE_VIEW(vf->listview), -1);
 
        column = 0;