[Xfce4-commits] [xfce/xfdesktop] 01/01: Fix transparent background color (Bug #16380)

noreply at xfce.org noreply at xfce.org
Sun Feb 23 22:05:13 CET 2020


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

a   l   e   x       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/xfdesktop.

commit ba3d36de92adc52dbe76a9824e89af462f46c8b8
Author: Theo Linkspfeifer <lastonestanding at tutanota.com>
Date:   Mon Feb 17 14:25:00 2020 +0100

    Fix transparent background color (Bug #16380)
---
 src/xfce-backdrop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c
index a34de39..bd9180e 100644
--- a/src/xfce-backdrop.c
+++ b/src/xfce-backdrop.c
@@ -1564,7 +1564,7 @@ xfce_backdrop_generate_canvas(XfceBackdrop *backdrop)
     if(backdrop->priv->color_style == XFCE_BACKDROP_COLOR_SOLID)
         final_image = create_solid(&backdrop->priv->color1, w, h);
     else if(backdrop->priv->color_style == XFCE_BACKDROP_COLOR_TRANSPARENT) {
-        GdkRGBA c = { 1.0f, 1.0f, 1.0f, 1.0f };
+        GdkRGBA c = { 1.0f, 1.0f, 1.0f, 0.0f };
         final_image = create_solid(&c, w, h);
     } else {
         final_image = create_gradient(&backdrop->priv->color1,

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


More information about the Xfce4-commits mailing list