# HG changeset patch # User Christian Brabandt # Date 1707213612 -3600 # Node ID 6f13dee16af92b7ce33699d9f2ae302f74cf2305 # Parent 890bf6a6c9573e256258a29c0df44e66885e1b4f patch 9.1.0078: GTK3: using wrong style for pre-edit area Commit: https://github.com/vim/vim/commit/b1457d4cb9185b2b8d575b7736eff6d3a97d89eb Author: lilydjwg Date: Tue Feb 6 10:49:14 2024 +0100 patch 9.1.0078: GTK3: using wrong style for pre-edit area Problem: GTK3: using wrong style for pre-edit area Solution: remove the widget name, adjust css (lilydjwg) closes: #13972 Signed-off-by: lilydjwg Signed-off-by: Christian Brabandt diff --git a/src/gui_xim.c b/src/gui_xim.c --- a/src/gui_xim.c +++ b/src/gui_xim.c @@ -325,7 +325,7 @@ im_preedit_window_open(void) #if GTK_CHECK_VERSION(3,16,0) { GtkStyleContext * const context - = gtk_widget_get_style_context(gui.drawarea); + = gtk_widget_get_style_context(preedit_label); GtkCssProvider * const provider = gtk_css_provider_new(); gchar *css = NULL; const char * const fontname @@ -349,7 +349,7 @@ im_preedit_window_open(void) fontsize_propval = g_strdup_printf("inherit"); css = g_strdup_printf( - "widget#vim-gui-preedit-area {\n" + "#vim-gui-preedit-area {\n" " font-family: %s,monospace;\n" " font-size: %s;\n" " color: #%.2lx%.2lx%.2lx;\n" diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -705,6 +705,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 78, +/**/ 77, /**/ 76,