Fix Font Inline completion not working in some cases
Inline completion is case sensitive, this makes it broken, because fonts desplayed in the pop should be quried in a case-insensitive manner. This fixes #2832. See gtk issue #275.
This commit is contained in:
parent
300ce655c3
commit
959426d4ee
1 changed files with 2 additions and 2 deletions
|
|
@ -132,8 +132,8 @@ gimp_container_entry_init (GimpContainerEntry *entry)
|
|||
entry->viewable = NULL;
|
||||
|
||||
completion = g_object_new (GTK_TYPE_ENTRY_COMPLETION,
|
||||
"inline-completion", TRUE,
|
||||
"popup-single-match", FALSE,
|
||||
"inline-completion", FALSE,
|
||||
"popup-single-match", TRUE,
|
||||
"popup-set-width", FALSE,
|
||||
NULL);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue