fix(StatusEmojiReactions): Text in own reactions has wrong color in dark mode

always use "white on blue"

Fixes #9944
This commit is contained in:
Lukáš Tinkl 2023-03-22 10:32:12 +01:00 committed by Lukáš Tinkl
parent 36940cc81e
commit eecaa0c7b9
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
text: model.numberOfReactions
font.pixelSize: 12
color: model.didIReactWithThisEmoji ? Theme.palette.indirectColor1 : Theme.palette.directColor1
color: model.didIReactWithThisEmoji ? Theme.palette.white : Theme.palette.directColor1
}
}