aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlink2xt <link2xt@testrun.org>2020-10-28 01:59:02 +0300
committerlink2xt <link2xt@testrun.org>2020-10-28 01:59:02 +0300
commitdaa31b783ad1dead6cbed79b428792702612aa31 (patch)
tree145c44723d50fc8bac51f56615102c96becfc5c8
parente100bb007f6a8498edf2eab5d8b8b883c920366f (diff)
downloadkdeltachat-daa31b783ad1dead6cbed79b428792702612aa31.tar.gz
kdeltachat-daa31b783ad1dead6cbed79b428792702612aa31.zip
ChatPage: fix displayed chat name
-rw-r--r--qml/ChatPage.qml2
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)