Merge lp:~unity-team/unity/unity.end-dots into lp:unity

Proposed by Jason Smith
Status: Rejected
Rejected by: Neil J. Patel
Proposed branch: lp:~unity-team/unity/unity.end-dots
Merge into: lp:unity
Diff against target: 11 lines (+1/-1)
1 file modified
src/PlacesSimpleTile.cpp (+1/-1)
To merge this branch: bzr merge lp:~unity-team/unity/unity.end-dots
Reviewer Review Type Date Requested Status
Gord Allott (community) Needs Information
Review via email: mp+57066@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Gord Allott (gordallott) wrote :

Got a bug asking for this? ellipzising in the middle is how its spec'ed

review: Needs Information

Unmerged revisions

1101. By Jason Smith

Ellipsize at end rather than begin

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/PlacesSimpleTile.cpp'
2--- src/PlacesSimpleTile.cpp 2011-04-07 12:36:20 +0000
3+++ src/PlacesSimpleTile.cpp 2011-04-10 06:09:29 +0000
4@@ -54,7 +54,7 @@
5 _cairotext = new nux::StaticCairoText ("");
6 _cairotext->SetMaximumWidth (style->GetTileWidth ());
7 _cairotext->SinkReference ();
8- _cairotext->SetTextEllipsize (nux::StaticCairoText::NUX_ELLIPSIZE_START);
9+ _cairotext->SetTextEllipsize (nux::StaticCairoText::NUX_ELLIPSIZE_END);
10 _cairotext->SetTextAlignment (nux::StaticCairoText::NUX_ALIGN_CENTRE);
11 _cairotext->SetText (_label);
12