Blame SOURCES/0001-gtkimcontextwayland-Set-a-higher-IO-extension-priori.patch
|
|
361791 |
From ce1b970b468f16046f08b84d75d871e594d68a45 Mon Sep 17 00:00:00 2001
|
|
|
361791 |
From: Carlos Garnacho <carlosg@gnome.org>
|
|
|
361791 |
Date: Sat, 4 Dec 2021 00:15:54 +0100
|
|
|
361791 |
Subject: [PATCH] gtkimcontextwayland: Set a higher IO extension priority
|
|
|
361791 |
|
|
|
361791 |
We want this to take precedence in the wayland platform to other
|
|
|
361791 |
modules that might be loaded via the IO extension point. None of
|
|
|
361791 |
those is going to bode well in this platform.
|
|
|
361791 |
|
|
|
361791 |
Fixes: https://gitlab.gnome.org/GNOME/gtk/-/issues/4443
|
|
|
361791 |
---
|
|
|
361791 |
gtk/gtkimcontextwayland.c | 2 +-
|
|
|
361791 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
361791 |
|
|
|
361791 |
diff --git a/gtk/gtkimcontextwayland.c b/gtk/gtkimcontextwayland.c
|
|
|
361791 |
index 9f4df8954b..8b372d048f 100644
|
|
|
361791 |
--- a/gtk/gtkimcontextwayland.c
|
|
|
361791 |
+++ b/gtk/gtkimcontextwayland.c
|
|
|
361791 |
@@ -101,7 +101,7 @@ G_DEFINE_TYPE_WITH_CODE (GtkIMContextWayland, gtk_im_context_wayland, GTK_TYPE_I
|
|
|
361791 |
g_io_extension_point_implement (GTK_IM_MODULE_EXTENSION_POINT_NAME,
|
|
|
361791 |
g_define_type_id,
|
|
|
361791 |
"wayland",
|
|
|
361791 |
- 0));
|
|
|
361791 |
+ 100));
|
|
|
361791 |
|
|
|
361791 |
#define GTK_IM_CONTEXT_WAYLAND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), gtk_im_context_wayland_get_type (), GtkIMContextWayland))
|
|
|
361791 |
|
|
|
361791 |
--
|
|
|
361791 |
2.37.0
|
|
|
361791 |
|