disable search for tree views so that treeview typeahead doesn't collide

2005-03-21  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpcontainertreeview.c
	(gimp_container_tree_view_constructor): disable search for tree
	views so that treeview typeahead doesn't collide with global
	accelerators. Fixes bug #169339 and would suck less if bug #170435
	got fixed.
This commit is contained in:
Sven Neumann 2005-03-21 19:20:11 +00:00 committed by Sven Neumann
parent 5d7931db74
commit 2bb4d73e13
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2005-03-21 Sven Neumann <sven@gimp.org>
* app/widgets/gimpcontainertreeview.c
(gimp_container_tree_view_constructor): disable search for tree
views so that treeview typeahead doesn't collide with global
accelerators. Fixes bug #169339 and would suck less if bug #170435
got fixed.
2005-03-21 Sven Neumann <sven@gimp.org> 2005-03-21 Sven Neumann <sven@gimp.org>
* app/core/gimp-transform-utils.[ch]: changed all transform * app/core/gimp-transform-utils.[ch]: changed all transform

View File

@ -227,9 +227,9 @@ gimp_container_tree_view_constructor (GType type,
tree_view->view = g_object_new (GTK_TYPE_TREE_VIEW, tree_view->view = g_object_new (GTK_TYPE_TREE_VIEW,
"model", list, "model", list,
"search_column", COLUMN_NAME, "search-column", COLUMN_NAME,
"enable_search", TRUE, "enable-search", FALSE,
"headers_visible", FALSE, "headers-visible", FALSE,
NULL); NULL);
g_object_unref (list); g_object_unref (list);