~ubuntu-branches/ubuntu/vivid/gpodder/vivid

« back to all changes in this revision

Viewing changes to share/gpodder/ui/qml/PodcastItem.qml

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2014-07-26 20:43:14 UTC
  • mfrom: (5.2.33 sid)
  • Revision ID: package-import@ubuntu.com-20140726204314-kz4v2tyeeg7oj43y
Tags: 3.8.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
        id: titleBox
98
98
 
99
99
        text: modelData.qtitle
100
 
        color: (!isSailfish && counters.newEpisodes)?Config.newColor:'white'
 
100
        color: counters.newEpisodes?Config.newColor:'white'
101
101
 
102
102
        anchors {
103
103
            verticalCenter: parent.verticalCenter
109
109
 
110
110
        font.pixelSize: podcastItem.height * .35
111
111
        wrapMode: Text.NoWrap
 
112
        elide: Text.ElideRight
112
113
    }
113
114
}
114
115