From c3b9d664dfd349b5e7e8fe571561d7a451a4782b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 15 Nov 2024 21:48:54 -0500 Subject: [PATCH] "Room Information" title should be capitalized --- src/qml/RoomInformation.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/RoomInformation.qml b/src/qml/RoomInformation.qml index 71dfd18ae..abe65dd60 100644 --- a/src/qml/RoomInformation.qml +++ b/src/qml/RoomInformation.qml @@ -39,7 +39,7 @@ QQC2.ScrollView { /** * @brief The title that should be displayed for this component if available. */ - readonly property string title: root.room.isSpace ? i18nc("@action:title", "Space Members") : i18nc("@action:title", "Room information") + readonly property string title: root.room.isSpace ? i18nc("@action:title", "Space Members") : i18nc("@action:title", "Room Information") // HACK: Hide unnecessary horizontal scrollbar (https://bugreports.qt.io/browse/QTBUG-83890) QQC2.ScrollBar.horizontal.policy: QQC2.ScrollBar.AlwaysOff