fix: undef warning

This commit is contained in:
2 * r + 2 * t 2026-04-25 14:29:01 +10:00
parent 15498f8786
commit b6b3514852

View file

@ -214,7 +214,7 @@ Item {
anchors.margins: Tokens.spacing.small
icon: Players.active?.isPlaying ? "pause" : "play_arrow"
checked: Players.active?.isPlaying
checked: Players.active?.isPlaying ?? false
disabled: !Players.active?.canTogglePlaying
onClicked: Players.active?.togglePlaying()
}