[Xfce4-commits] [xfce/xfce4-panel] 01/01: systray: Fix icons without compositing (Bug #14577)

noreply at xfce.org noreply at xfce.org
Tue Sep 24 00:10:31 CEST 2019


This is an automated email from the git hooks/post-receive script.

o   c   h   o   s   i       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository xfce/xfce4-panel.

commit f6f70cce417fd2982c2ce6f01016ed01deb6a9ae
Author: Ivan A. Melnikov <iv at altlinux.org>
Date:   Mon Sep 23 16:18:10 2019 +0400

    systray: Fix icons without compositing (Bug #14577)
    
    Wrapper window uses RGBA visual when it's available;
    systray manager should try to do the same for
    the transparent or parent-relative background to work.
    
    That means that the manager and icons will work with
    RGBA visual even if the screen is not compositing; so
    we should always force-redraw the icons.
    
    Refs: https://bugzilla.xfce.org/show_bug.cgi?id=14577
    Signed-off-by: Ivan A. Melnikov <iv at altlinux.org>
---
 plugins/systray/systray-manager.c | 10 ++++++----
 plugins/systray/systray.c         | 10 ----------
 2 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/plugins/systray/systray-manager.c b/plugins/systray/systray-manager.c
index 6883655..4915649 100644
--- a/plugins/systray/systray-manager.c
+++ b/plugins/systray/systray-manager.c
@@ -751,6 +751,7 @@ static void
 systray_manager_set_visual (SystrayManager *manager)
 {
   GdkDisplay  *display;
+  GdkVisual   *visual;
   Visual      *xvisual;
   Atom         visual_atom;
   gulong       data[1];
@@ -768,11 +769,12 @@ systray_manager_set_visual (SystrayManager *manager)
   visual_atom = gdk_x11_get_xatom_by_name_for_display (display,
       "_NET_SYSTEM_TRAY_VISUAL");
 
-  if (gdk_screen_is_composited (gtk_widget_get_screen (manager->invisible))
-      && (gdk_screen_get_rgba_visual (screen) != NULL))
+  visual = gdk_screen_get_rgba_visual (screen);
+  panel_debug (PANEL_DEBUG_SYSTRAY, "rgba visual is %p", visual);
+  if (visual != NULL)
     {
-      /* get the rgba visual */
-      xvisual = GDK_VISUAL_XVISUAL (gdk_screen_get_rgba_visual (screen));
+      /* use the rgba visual */
+      xvisual = GDK_VISUAL_XVISUAL (visual);
     }
   else
     {
diff --git a/plugins/systray/systray.c b/plugins/systray/systray.c
index 3fb9520..beae197 100644
--- a/plugins/systray/systray.c
+++ b/plugins/systray/systray.c
@@ -728,19 +728,9 @@ systray_plugin_box_draw (GtkWidget *box,
                          gpointer   user_data)
 {
   SystrayPlugin *plugin = XFCE_SYSTRAY_PLUGIN (user_data);
-  GdkScreen      *screen;
-
   panel_return_if_fail (XFCE_IS_SYSTRAY_PLUGIN (plugin));
   panel_return_if_fail (cr != NULL);
 
-  screen = gtk_widget_get_screen (GTK_WIDGET (plugin));
-
-  if (G_LIKELY (screen != NULL))
-    {
-      if (!gdk_screen_is_composited (screen))
-        return;
-    }
-
   /* separately draw all the composed tray icons after gtk
    * handled the draw event */
   gtk_container_foreach (GTK_CONTAINER (box),

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list