From f78c4f1af08611de4dea7d9d673ce922a4e13793 Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss Date: Sat, 13 Jul 2019 23:49:34 +0200 Subject: [PATCH] pager: Ensure bg color is set correctly (Bug #15690) --- plugins/pager/pager.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/pager/pager.c b/plugins/pager/pager.c index e0274fe6..8d8565af 100644 --- a/plugins/pager/pager.c +++ b/plugins/pager/pager.c @@ -401,6 +401,10 @@ G_GNUC_END_IGNORE_DEPRECATIONS gtk_container_add (GTK_CONTAINER (plugin), plugin->pager); gtk_widget_show (plugin->pager); + + /* Poke the style-updated signal to set the correct background color for the newly + created widget. Otherwise it may sometimes end up transparent. */ + pager_plugin_style_updated (plugin->pager, NULL); } -- 2.19.1