diff options
| author | Andrea Cimitan <andrea.cimitan@gmail.com> | 2010-09-17 14:00:20 +0200 |
|---|---|---|
| committer | Andrea Cimitan <andrea.cimitan@gmail.com> | 2010-09-17 14:00:20 +0200 |
| commit | 3036bc3e00890233269afa8a33c3f005bcfc6ea2 (patch) | |
| tree | b3cb389914ba8c4dd49de1119e0348f6bc90f55d | |
| parent | a394e2c750de6e765ab160c5da3b2f8d1f5d1c46 (diff) | |
Improved look of breadcrumbs in folder view
(bzr r517.3.1)
| -rw-r--r-- | unity-private/places/places-place-search-sections-bar.vala | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unity-private/places/places-place-search-sections-bar.vala b/unity-private/places/places-place-search-sections-bar.vala index 277d85836..f38c984d2 100644 --- a/unity-private/places/places-place-search-sections-bar.vala +++ b/unity-private/places/places-place-search-sections-bar.vala @@ -332,8 +332,9 @@ namespace Unity.Places x, height - radius); cr.close_path (); - cr.set_source_rgba (1.0, 1.0, 1.0, 0.5); + cr.set_source_rgba (1.0, 1.0, 1.0, 0.25); cr.fill_preserve (); + cr.set_source_rgba (1.0, 1.0, 1.0, 0.25); cr.stroke (); var chevron = 5; @@ -348,7 +349,7 @@ namespace Unity.Places cr.move_to (point - chevron, y); cr.line_to (point + chevron, y + height/2); cr.line_to (point - chevron, y + height); - cr.set_source_rgba (1.0, 1.0, 1.0, 1.0); + cr.set_source_rgba (1.0, 1.0, 1.0, 0.5); cr.stroke (); } point += SPACING/2; |
