Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--lib/sugar-address-entry.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index afa42cd..dd672f2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+* #2103 Use selection grey for progress in the browser entry. (marco)
* Fix opening downloads from the clipboard. (marco)
Snapshot 6b57baa075
diff --git a/lib/sugar-address-entry.c b/lib/sugar-address-entry.c
index 47a6988..1f8c983 100644
--- a/lib/sugar-address-entry.c
+++ b/lib/sugar-address-entry.c
@@ -462,7 +462,7 @@ sugar_address_entry_expose(GtkWidget *widget,
float radius = area_height / 2;
cr = gdk_cairo_create(entry->text_area);
- cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
+ cairo_set_source_rgb(cr, 0xA6 / 255.0, 0xA6 / 255.0, 0xA6 / 255.0);
cairo_move_to (cr, radius, 0);
cairo_arc (cr, bar_width - radius, radius, radius, M_PI * 1.5, M_PI * 2);