After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 676899 - Turn off type ahead find
Turn off type ahead find
Status: RESOLVED FIXED
Product: nautilus
Classification: Core
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-05-26 19:42 UTC by William Jon McCann
Modified: 2012-08-03 21:14 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Turn off type ahead find (1.65 KB, patch)
2012-05-26 19:42 UTC, William Jon McCann
needs-work Details | Review
Turn off type ahead find in sidebar (1.02 KB, patch)
2012-05-27 16:17 UTC, William Jon McCann
committed Details | Review

Description William Jon McCann 2012-05-26 19:42:57 UTC
We want the user to be able to invoke a search function when they just type.
Comment 1 William Jon McCann 2012-05-26 19:42:58 UTC
Created attachment 215061 [details] [review]
Turn off type ahead find

It interferes with search and is very confusing particularly
when used in the sidebar.
Comment 2 Cosimo Cecchi 2012-05-27 03:41:31 UTC
Review of attachment 215061 [details] [review]:

::: src/nautilus-list-view.c
@@ +1550,3 @@
 							(GDestroyNotify)g_free,
 							(GDestroyNotify) g_object_unref);
+	gtk_tree_view_set_enable_search (view->details->tree_view, FALSE);

I think until we have a better search function we could keep these on in the main views (the icon view has it too) since it can be quite handy to quickly select files.
What is really annoying is the one in the sidebar, which should go away.
Comment 3 William Jon McCann 2012-05-27 16:17:02 UTC
The following fix has been pushed:
f840890 Turn off type ahead find in sidebar
Comment 4 William Jon McCann 2012-05-27 16:17:04 UTC
Created attachment 215096 [details] [review]
Turn off type ahead find in sidebar

It interferes with search in the main view. We want to eventually
move to a "just type" search box for the main view.