Merge lp:~cimi/unity/improved-breadcrumbs into lp:unity

Proposed by Andrea Cimitan
Status: Merged
Merged at revision: 521
Proposed branch: lp:~cimi/unity/improved-breadcrumbs
Merge into: lp:unity
Diff against target: 23 lines (+3/-2)
1 file modified
unity-private/places/places-place-search-sections-bar.vala (+3/-2)
To merge this branch: bzr merge lp:~cimi/unity/improved-breadcrumbs
Reviewer Review Type Date Requested Status
Neil J. Patel (community) Approve
Review via email: mp+35806@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Neil J. Patel (njpatel) wrote :

Approved and merged, thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'unity-private/places/places-place-search-sections-bar.vala'
2--- unity-private/places/places-place-search-sections-bar.vala 2010-09-13 22:00:38 +0000
3+++ unity-private/places/places-place-search-sections-bar.vala 2010-09-17 12:09:14 +0000
4@@ -332,8 +332,9 @@
5 x, height - radius);
6 cr.close_path ();
7
8- cr.set_source_rgba (1.0, 1.0, 1.0, 0.5);
9+ cr.set_source_rgba (1.0, 1.0, 1.0, 0.25);
10 cr.fill_preserve ();
11+ cr.set_source_rgba (1.0, 1.0, 1.0, 0.25);
12 cr.stroke ();
13
14 var chevron = 5;
15@@ -348,7 +349,7 @@
16 cr.move_to (point - chevron, y);
17 cr.line_to (point + chevron, y + height/2);
18 cr.line_to (point - chevron, y + height);
19- cr.set_source_rgba (1.0, 1.0, 1.0, 1.0);
20+ cr.set_source_rgba (1.0, 1.0, 1.0, 0.5);
21 cr.stroke ();
22 }
23 point += SPACING/2;