From 962160b3c9308c4c9713371a79df275b831caa67 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 27 Jun 2016 16:07:08 -0400 Subject: [PATCH] fix the contents treeview search column to search on entry name --- simplesvnbrowser/main_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/simplesvnbrowser/main_window.py b/simplesvnbrowser/main_window.py index 25c4dbe..a38de5f 100644 --- a/simplesvnbrowser/main_window.py +++ b/simplesvnbrowser/main_window.py @@ -42,6 +42,7 @@ class MainWindow(Gtk.Window): self.contents_treeview.set_headers_visible(False) self.contents_treeview.connect("row-activated", self.__on_contents_treeview_row_activated) self.contents_treeview.connect("button-release-event", self.__on_contents_treeview_button_press) + self.contents_treeview.set_search_column(1) icon_renderer = Gtk.CellRendererPixbuf() column = Gtk.TreeViewColumn("Icon", icon_renderer, icon_name = 0) self.contents_treeview.append_column(column)