From: Colin Clark Date: Fri, 9 Oct 2020 15:50:32 +0000 (+0100) Subject: Fix #819: Turning off mouseover info X-Git-Tag: v1.6~14 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=4d5f032ecf0466198e19f80cad1630614c2bf3d4 Fix #819: Turning off mouseover info 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. --- diff --git a/src/view_file/view_file_list.c b/src/view_file/view_file_list.c index fddca37e..76c290cf 100644 --- a/src/view_file/view_file_list.c +++ b/src/view_file/view_file_list.c @@ -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;