Fix a few label colors

This commit is contained in:
Nicolas Werner 2024-03-05 20:37:17 +01:00
parent b9ffcffe2d
commit 02406bf999
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
2 changed files with 2 additions and 0 deletions

View file

@ -47,6 +47,7 @@ Item {
anchors.centerIn: parent anchors.centerIn: parent
font.pointSize: 24 font.pointSize: 24
text: qsTr("No room open") text: qsTr("No room open")
color: palette.text
visible: !room && !TimelineManager.isInitialSync && (!roomPreview || !roomPreview.roomid) visible: !room && !TimelineManager.isInitialSync && (!roomPreview || !roomPreview.roomid)
} }
Spinner { Spinner {

View file

@ -47,6 +47,7 @@ Control {
text: qsTr("Encryption keeps your messages safe by only allowing the people you sent the message to to read it. For extra security, if you want to make sure you are talking to the right people, you can verify them in real life.") text: qsTr("Encryption keeps your messages safe by only allowing the people you sent the message to to read it. For extra security, if you want to make sure you are talking to the right people, you can verify them in real life.")
textFormat: Text.PlainText textFormat: Text.PlainText
wrapMode: Label.WordWrap wrapMode: Label.WordWrap
color: palette.text
Layout.fillWidth: true Layout.fillWidth: true
Layout.maximumWidth: implicitWidth + 1 Layout.maximumWidth: implicitWidth + 1
} }