diff options
Diffstat (limited to 'ContactList.qml')
| -rw-r--r-- | ContactList.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ContactList.qml b/ContactList.qml index 0eee13b..574bb7e 100644 --- a/ContactList.qml +++ b/ContactList.qml @@ -14,6 +14,7 @@ Page { text: qsTr("+") anchors.left: parent.left + onClicked: stack.push("qrc:/org/yachat/app/Accounts.qml", {}) } } @@ -44,11 +45,10 @@ Page model: cmodel delegate: ItemDelegate { - required property int index required property var model width: parent.width - text: "<b>" + model.jid + "</b>" + text: model.to + " <i>(" + model.jid + "</i>)" anchors.horizontalCenter: parent.horizontalCenter onClicked: stack.push("qrc:/org/yachat/app/ChatView.qml", { |
