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:
Idriss Fekir 2023-07-22 17:05:42 +01:00 committed by Jehan
parent 300ce655c3
commit 959426d4ee

View file

@ -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);