~gwibber-committers/gwibber/trunk

« back to all changes in this revision

Viewing changes to qml/StatusUpdateTile.qml

  • Committer: Ken VanDine
  • Date: 2013-03-14 17:14:38 UTC
  • Revision ID: ken.vandine@canonical.com-20130314171438-aily2erffc00ourm
added icons

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
 
143
143
            ListItem.Empty {
144
144
                id: favorite
145
 
                width: parent.width
 
145
                width: parent.width - avatarImage.width
146
146
                height: favoriteIcon.height + units.gu(1)
147
147
                anchors {
148
148
                    left: parent.left
182
182
                    width: parent.width - favoriteIcon.width
183
183
                    anchors {
184
184
                        left: favoriteIcon.right
185
 
                        right: parent.right
 
185
                        right: serviceIcon.right
186
186
                    }
187
187
                    fontSize: "small"
188
188
                    color: "gray"
189
189
                }
 
190
 
 
191
                Image {
 
192
                    id: serviceIcon
 
193
                    anchors {
 
194
                        right: parent.right
 
195
                    }
 
196
                    source: "images/"+service+".png"
 
197
                    width: 22
 
198
                    height: 22
 
199
                    asynchronous: true
 
200
                }
190
201
            }
191
202
        }
192
203