Package: file-roller Severity: wishlist Dear GNOME
The search-as-you-type functionality (eg. as provided by Nautilus, where you can just type ahead and the relevant file will get selected) is currently disabled in file-roller, even though it's a really convenient feature. I'm attaching a one-line patch to fix this. I'd appreciate if this could be included in Debian. See also https://bugzilla.gnome.org/show_bug.cgi?id=619738. Thanks, -- Siegfried-Angel Gevatter Pujals (RainCT) Free Software Developer 363DEAE3
From b6bc74a12a6873dcb9e44a7c225f3fd611026f6a Mon Sep 17 00:00:00 2001 From: Siegfried-Angel Gevatter Pujals <[email protected]> Date: Wed, 3 Feb 2010 00:35:36 +0100 Subject: [PATCH] Enable filename search-as-you-type This enables search-as-you-type functionality in the main treeview, which makes it much faster to use file-roller using only the keyboard. https://bugzilla.gnome.org/show_bug.cgi?id=619738 --- src/fr-window.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/src/fr-window.c b/src/fr-window.c index d8fb08e..8a6099c 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -5557,8 +5557,6 @@ fr_window_construct (FrWindow *window) gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (window->priv->list_view), TRUE); add_file_list_columns (window, GTK_TREE_VIEW (window->priv->list_view)); - gtk_tree_view_set_enable_search (GTK_TREE_VIEW (window->priv->list_view), - FALSE); gtk_tree_view_set_search_column (GTK_TREE_VIEW (window->priv->list_view), COLUMN_NAME); -- 1.7.1

