Merge lp:~boiko/dialer-app/fix_call_log_display into lp:dialer-app

Proposed by Gustavo Pichorim Boiko
Status: Merged
Merged at revision: 95
Proposed branch: lp:~boiko/dialer-app/fix_call_log_display
Merge into: lp:dialer-app
Diff against target: 18 lines (+3/-0)
1 file modified
src/qml/HistoryPage/HistoryDelegate.qml (+3/-0)
To merge this branch: bzr merge lp:~boiko/dialer-app/fix_call_log_display
Reviewer Review Type Date Requested Status
Bill Filler (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+203625@code.launchpad.net

Commit message

Truncate the contact name on call log if it doesn't fit.

Description of the change

Truncate the contact name on call log if it doesn't fit.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Bill Filler (bfiller) wrote :

approved

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/qml/HistoryPage/HistoryDelegate.qml'
2--- src/qml/HistoryPage/HistoryDelegate.qml 2014-01-21 13:31:36 +0000
3+++ src/qml/HistoryPage/HistoryDelegate.qml 2014-01-28 19:43:04 +0000
4@@ -129,11 +129,14 @@
5 topMargin: units.gu(2)
6 left: avatar.right
7 leftMargin: units.gu(2)
8+ right: time.left
9+ rightMargin: units.gu(1)
10 }
11 height: units.gu(2)
12 verticalAlignment: Text.AlignVCenter
13 fontSize: "medium"
14 text: contactWatcher.alias != "" ? contactWatcher.alias : i18n.tr("Unknown")
15+ elide: Text.ElideRight
16 }
17
18 Label {

Subscribers

People subscribed via source and target branches