set "inline-completion" and unset "popup-set-width" properties.

2005-12-30  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpcontainerentry.c (gimp_container_entry_init):
	set "inline-completion" and unset "popup-set-width" properties.
This commit is contained in:
Sven Neumann 2005-12-30 01:56:37 +00:00 committed by Sven Neumann
parent 5bae6a5647
commit ca648066d0
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-30 Sven Neumann <sven@gimp.org>
* app/widgets/gimpcontainerentry.c (gimp_container_entry_init):
set "inline-completion" and unset "popup-set-width" properties.
2005-12-30 Sven Neumann <sven@gimp.org>
* app/actions/image-actions.c

View File

@ -96,7 +96,10 @@ gimp_container_entry_init (GimpContainerEntry *entry)
GtkListStore *store;
GtkCellRenderer *cell;
completion = gtk_entry_completion_new ();
completion = g_object_new (GTK_TYPE_ENTRY_COMPLETION,
"inline-completion", TRUE,
"popup-set-width", FALSE,
NULL);
store = gtk_list_store_new (GIMP_CONTAINER_ENTRY_NUM_COLUMNS,
GIMP_TYPE_VIEW_RENDERER,