1
0

Revert "qml: don't determine channel state on gui string, use state enum instead"

This reverts commit 73f89d516a.
This commit is contained in:
Sander van Grieken
2023-04-18 14:51:19 +02:00
parent 6733665dac
commit 43b3e07479
3 changed files with 2 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ Pane {
Label {
text: channeldetails.state
color: channeldetails.stateCode == ChannelDetails.Open
color: channeldetails.state == 'OPEN'
? constants.colorChannelOpen
: Material.foreground
}