mirror of https://github.com/GNOME/gimp.git
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:
parent
5bae6a5647
commit
ca648066d0
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue