From 188c705473849e9432c48a0a1a58adb7423ec630 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Fri, 7 Jul 2017 00:09:41 -0400 Subject: system tray: fix hidden icons on image/transparent color BG Enable the force-redraw code unconditionally so it can function from the idle callback regardless of child->parent_relative_bg = TRUE/FALSE as it seems to now always be needed --- applets/notification_area/system-tray/na-tray-child.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/notification_area/system-tray/na-tray-child.c b/applets/notification_area/system-tray/na-tray-child.c index 3cfaa2c8..46e6e412 100644 --- a/applets/notification_area/system-tray/na-tray-child.c +++ b/applets/notification_area/system-tray/na-tray-child.c @@ -589,7 +589,7 @@ na_tray_child_force_redraw (NaTrayChild *child) { GtkWidget *widget = GTK_WIDGET (child); - if (gtk_widget_get_mapped (widget) && child->parent_relative_bg) + if (gtk_widget_get_mapped (widget)) { #if 1 /* Sending an ExposeEvent might cause redraw problems if the -- cgit v1.2.1