mirror of https://github.com/GNOME/gimp.git
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:
parent
5d7931db74
commit
2bb4d73e13
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue