~nik90/cliffhanger/convergence-1

« back to all changes in this revision

Viewing changes to ui/PersonTab.qml

  • Committer: Nekhelesh Ramananthan
  • Date: 2014-03-31 11:29:24 UTC
  • Revision ID: krnekhelesh@gmail.com-20140331112924-gmwet42bnasm4ua5
A working tablet landscape form for Movie tab

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        id: popular
52
52
        dataModel: popularPeople.model
53
53
        header: i18n.tr("Popular")
54
 
        anchors {
55
 
            fill: parent
56
 
            margins: units.gu(2)
57
 
        }
 
54
        anchors .fill: parent
58
55
        onThumbClicked: pageStack.push(Qt.resolvedUrl("PersonPage.qml"), {"person_id": model.id})
59
56
    }
60
57