[epiphany] downloads-progress-icon: Fix icon fill color



commit 5d2e828015d40f30b6732260b90c61cea46d3275
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Sat Feb 20 12:34:15 2016 -0600

    downloads-progress-icon: Fix icon fill color

 lib/widgets/ephy-downloads-progress-icon.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/lib/widgets/ephy-downloads-progress-icon.c b/lib/widgets/ephy-downloads-progress-icon.c
index 36ce50c..05c87c8 100644
--- a/lib/widgets/ephy-downloads-progress-icon.c
+++ b/lib/widgets/ephy-downloads-progress-icon.c
@@ -65,8 +65,7 @@ ephy_downloads_progress_icon_draw (GtkWidget *widget,
 
   if (progress > 0 && progress < 1) {
     cairo_clip (cr);
-
-    color.alpha *= 0.7;
+    color.alpha = 1;
     gdk_cairo_set_source_rgba (cr, &color);
     cairo_rectangle (cr, 0, 0, width, height * progress);
     cairo_fill (cr);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]