# HG changeset patch # User Bram Moolenaar # Date 1606303804 -3600 # Node ID 3922abbc46a2706c691e22b3985d96a6e5dacdc4 # Parent 116448e826f87bb813cbe07836e2aed8bfb3a8b7 patch 8.2.2043: GTK3: white border around text stands out Commit: https://github.com/vim/vim/commit/ff94bd9e4779b918f3761035f43a97ba7175b3ce Author: Bram Moolenaar Date: Wed Nov 25 12:25:47 2020 +0100 patch 8.2.2043: GTK3: white border around text stands out Problem: GTK3: white border around text stands out. Solution: Use current theme color. (closes https://github.com/vim/vim/issues/7357, issue https://github.com/vim/vim/issues/349) diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -4039,10 +4039,10 @@ gui_mch_new_colors(void) #if GTK_CHECK_VERSION(3,22,2) GtkStyleContext * const context - = gtk_widget_get_style_context(gui.drawarea); + = gtk_widget_get_style_context(gui.mainwin); GtkCssProvider * const provider = gtk_css_provider_new(); gchar * const css = g_strdup_printf( - "widget#vim-gui-drawarea {\n" + "widget#vim-gui-drawarea, #vim-main-window {\n" " background-color: #%.2lx%.2lx%.2lx;\n" "}\n", (gui.back_pixel >> 16) & 0xff, diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2043, +/**/ 2042, /**/ 2041,