diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-02-04 11:34:38 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-02-04 15:24:48 +0100 |
| commit | 23cc4be5bc02328fe73ccbd67493dd71ef2e2b8f (patch) | |
| tree | b9e1a7a416f004d96671c0abf597524946b9dda3 /ContactList.qml | |
| parent | 3b9973552ec613b37fb511f3a0ae24dacb1e4366 (diff) | |
| download | yachat6-23cc4be5bc02328fe73ccbd67493dd71ef2e2b8f.tar.gz | |
Add accounts and login pages
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", { |
