From 959426d4eecf912c3c308a882667fd7a53e52253 Mon Sep 17 00:00:00 2001 From: Idriss Fekir Date: Sat, 22 Jul 2023 17:05:42 +0100 Subject: [PATCH] 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. --- app/widgets/gimpcontainerentry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/widgets/gimpcontainerentry.c b/app/widgets/gimpcontainerentry.c index f1227ee4c0..1c060c596e 100644 --- a/app/widgets/gimpcontainerentry.c +++ b/app/widgets/gimpcontainerentry.c @@ -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);