mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gtk+-2: Add patch to support GUIX_GTK2_IM_MODULE_FILE.
* gnu/packages/patches/gtk2-respect-GUIX_GTK2_IM_MODULE_FILE.patch: New file. * gnu/packages/gtk.scm (gtk+-2)[source]: Add it. * gnu/local.mk (dist_patch_DATA): Add it.
This commit is contained in:
parent
be9f3a8331
commit
711670c04f
3 changed files with 17 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
This patch replaces the environment variable "GTK_IM_MODULE" with
|
||||
"GUIX_GTK2_IM_MODULE_FILE" to prevent this version of GTK+ from loading input
|
||||
method modules for other major versions of GTK+.
|
||||
|
||||
--- gtk+-2.24.30/gtk/gtkrc.c 2016-08-21 22:40:22.339660438 +0200
|
||||
+++ gtk+-2.24.30/gtk/gtkrc.c 2016-08-23 10:11:11.080822710 +0200
|
||||
@@ -439,7 +439,7 @@
|
||||
gchar *
|
||||
gtk_rc_get_im_module_file (void)
|
||||
{
|
||||
- const gchar *var = g_getenv ("GTK_IM_MODULE_FILE");
|
||||
+ const gchar *var = g_getenv ("GUIX_GTK2_IM_MODULE_FILE");
|
||||
gchar *result = NULL;
|
||||
|
||||
if (var)
|
Loading…
Add table
Add a link
Reference in a new issue