Fix #819: Turning off mouseover info
authorColin Clark <[email protected]>
Fri, 9 Oct 2020 15:50:32 +0000 (16:50 +0100)
committerColin Clark <[email protected]>
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 fddca37e692fa535afa8e1e9ce61e63eca7e8643..76c290cfff3150ee0e4150e0a1b9e8867a4ef34f 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;