diff options
author | link2xt <link2xt@testrun.org> | 2020-10-28 01:59:02 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2020-10-28 01:59:02 +0300 |
commit | daa31b783ad1dead6cbed79b428792702612aa31 (patch) | |
tree | 145c44723d50fc8bac51f56615102c96becfc5c8 /qml/ChatPage.qml | |
parent | e100bb007f6a8498edf2eab5d8b8b883c920366f (diff) | |
download | kdeltachat-daa31b783ad1dead6cbed79b428792702612aa31.tar.gz kdeltachat-daa31b783ad1dead6cbed79b428792702612aa31.zip |
ChatPage: fix displayed chat name
Diffstat (limited to 'qml/ChatPage.qml')
-rw-r--r-- | qml/ChatPage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/ChatPage.qml b/qml/ChatPage.qml index b7548bd..1f7229e 100644 --- a/qml/ChatPage.qml +++ b/qml/ChatPage.qml @@ -9,7 +9,7 @@ import DeltaChat 1.0 Kirigami.Page { id: chatPage - title: messageListView.chat ? messageListView.chat.name : qsTr("Chat") + title: chat ? chat.name : qsTr("Chat") property var chatId readonly property DcChat chat: context.getChat(chatId) |