diff options
| author | lukefromdc <[email protected]> | 2017-07-07 00:09:41 -0400 | 
|---|---|---|
| committer | raveit65 <[email protected]> | 2017-07-11 13:41:03 +0200 | 
| commit | 188c705473849e9432c48a0a1a58adb7423ec630 (patch) | |
| tree | 8670b777873161419a7f2a78f8bfc3652816d3c3 | |
| parent | 58ad8ace649511b63c488868a8c4f466d659820d (diff) | |
| download | mate-panel-188c705473849e9432c48a0a1a58adb7423ec630.tar.bz2 mate-panel-188c705473849e9432c48a0a1a58adb7423ec630.tar.xz | |
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
| -rw-r--r-- | applets/notification_area/system-tray/na-tray-child.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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 | 
