~renatofilho/address-book-app/fix-1511477

« back to all changes in this revision

Viewing changes to src/imports/ABContactListPage.qml

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2015-11-16 22:12:29 UTC
  • Revision ID: renato.filho@canonical.com-20151116221229-528rx57x4yr3fo01
Only highlight active contacts when in multiple column mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
        filterTerm: searchField.text
185
185
        multiSelectionEnabled: true
186
186
        multipleSelection: (mainPage.pickMode && mainPage.pickMultipleContacts) || !mainPage.pickMode
187
 
        highlightedContact: contactViewPage ? contactViewPage.contact :
188
 
                            contactEditorPage ? contactEditorPage.contact : null
189
 
 
 
187
        highlightSelected: pageStack.columns > 1
190
188
        onAddContactClicked: mainPage.createContactWithPhoneNumber(label)
191
189
        onAddNewContactClicked: mainPage.createContactWithPhoneNumber(mainPage.newPhoneToAdd)
192
190