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
=== modified file 'unity-private/places/places-place-search-sections-bar.vala'
--- unity-private/places/places-place-search-sections-bar.vala 2010-09-13 22:00:38 +0000
+++ unity-private/places/places-place-search-sections-bar.vala 2010-09-17 12:09:14 +0000
@@ -332,8 +332,9 @@
332 x, height - radius);332 x, height - radius);
333 cr.close_path ();333 cr.close_path ();
334334
335 cr.set_source_rgba (1.0, 1.0, 1.0, 0.5);335 cr.set_source_rgba (1.0, 1.0, 1.0, 0.25);
336 cr.fill_preserve ();336 cr.fill_preserve ();
337 cr.set_source_rgba (1.0, 1.0, 1.0, 0.25);
337 cr.stroke ();338 cr.stroke ();
338339
339 var chevron = 5;340 var chevron = 5;
@@ -348,7 +349,7 @@
348 cr.move_to (point - chevron, y);349 cr.move_to (point - chevron, y);
349 cr.line_to (point + chevron, y + height/2);350 cr.line_to (point + chevron, y + height/2);
350 cr.line_to (point - chevron, y + height);351 cr.line_to (point - chevron, y + height);
351 cr.set_source_rgba (1.0, 1.0, 1.0, 1.0);352 cr.set_source_rgba (1.0, 1.0, 1.0, 0.5);
352 cr.stroke ();353 cr.stroke ();
353 }354 }
354 point += SPACING/2;355 point += SPACING/2;