From 70a8842f0014beaeeb69b68f14197e723fc044a8 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Tue, 23 Apr 2024 13:27:15 +0200 Subject: [PATCH] Use escaped title in devtools (cherry picked from commit 307536c6b634126ad2c64a4815a21a7182db5f86) --- src/devtools/RoomData.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devtools/RoomData.qml b/src/devtools/RoomData.qml index 2c934189d..57a81497d 100644 --- a/src/devtools/RoomData.qml +++ b/src/devtools/RoomData.qml @@ -25,7 +25,7 @@ ColumnLayout { text: i18n("Room") textRole: "escapedDisplayName" valueRole: "roomId" - displayText: RoomManager.roomListModel.data(RoomManager.roomListModel.index(currentIndex, 0), RoomListModel.DisplayNameRole) + displayText: RoomManager.roomListModel.data(RoomManager.roomListModel.index(currentIndex, 0), RoomListModel.EscapedDisplayNameRole) model: RoomManager.roomListModel currentIndex: 0 displayMode: FormCard.FormComboBoxDelegate.Page