~tiagosh/address-book-app/fix-1234234

« back to all changes in this revision

Viewing changes to src/imports/Ubuntu/Contacts/ContactSimpleListView.qml

- add "view profile" item.
- fix icons for expansible items. Fixes: https://bugs.launchpad.net/bugs/1231440.

Approved by PS Jenkins bot, Gustavo Pichorim Boiko.

Show diffs side-by-side

added added

removed removed

Lines of Context:
438
438
                    }
439
439
                }
440
440
            }
441
 
            Image {
442
 
                width: units.gu(2)
443
 
                height: units.gu(2)
444
 
                anchors.right: parent.right
445
 
                anchors.rightMargin: units.gu(3)
446
 
                anchors.top: parent.top
447
 
                anchors.topMargin: units.gu(2)
448
 
                visible: delegate.detailsShown
449
 
                source: contactListView.defaultAvatarImageUrl
450
 
                MouseArea {
451
 
                   anchors.fill: parent
452
 
                   onClicked: applicationUtils.switchToAddressbookApp("contact://" + contact.contactId)
453
 
                }
454
 
            }
455
441
            Loader {
456
442
                id: pickerLoader
457
443