summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2024-03-05 20:37:17 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2024-03-05 20:37:17 +0100
commit02406bf999ec01dea47cbb60e1273f00218c7a27 (patch)
treecb05e9fa1d3401acae47082e119ddeb1af99a51e /resources
parentFix completer size on plasma6 (diff)
downloadnheko-02406bf999ec01dea47cbb60e1273f00218c7a27.tar.xz
Fix a few label colors
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/TimelineView.qml1
-rw-r--r--resources/qml/delegates/EncryptionEnabled.qml1
2 files changed, 2 insertions, 0 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml

index 6786b26b..7bad53c4 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -47,6 +47,7 @@ Item { anchors.centerIn: parent font.pointSize: 24 text: qsTr("No room open") + color: palette.text visible: !room && !TimelineManager.isInitialSync && (!roomPreview || !roomPreview.roomid) } Spinner { diff --git a/resources/qml/delegates/EncryptionEnabled.qml b/resources/qml/delegates/EncryptionEnabled.qml
index 40894543..bd172c24 100644 --- a/resources/qml/delegates/EncryptionEnabled.qml +++ b/resources/qml/delegates/EncryptionEnabled.qml
@@ -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.") textFormat: Text.PlainText wrapMode: Label.WordWrap + color: palette.text Layout.fillWidth: true Layout.maximumWidth: implicitWidth + 1 }