summaryrefslogtreecommitdiffstats
path: root/resources/qml/TypingIndicator.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-02 01:29:05 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-08 22:32:07 +0200
commit54e2295c214874a316d22eaedaf5c2db17b59df0 (patch)
tree2c88e09be38e2758dfcd3fe6732da484f99d94c5 /resources/qml/TypingIndicator.qml
parente85a1d4aeb464f155cf026d33cab120f07724e70 (diff)
Fix palette access and QMediaPlayer errors
Diffstat (limited to 'resources/qml/TypingIndicator.qml')
-rw-r--r--resources/qml/TypingIndicator.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/TypingIndicator.qml b/resources/qml/TypingIndicator.qml
index 027ae5b6..704fe8ef 100644
--- a/resources/qml/TypingIndicator.qml
+++ b/resources/qml/TypingIndicator.qml
@@ -15,7 +15,7 @@ Item {
id: typingRect
visible: (room && room.typingUsers.length > 0)
- color: Nheko.colors.base
+ color: palette.base
anchors.fill: parent
z: 3
@@ -27,8 +27,8 @@ Item {
anchors.right: parent.right
anchors.rightMargin: 10
anchors.bottom: parent.bottom
- color: Nheko.colors.text
- text: room ? room.formatTypingUsers(room.typingUsers, Nheko.colors.base) : ""
+ color: palette.text
+ text: room ? room.formatTypingUsers(room.typingUsers, palette.base) : ""
textFormat: Text.RichText
}