Fixed client being unable to leave when votes are tallied.

This commit is contained in:
armored-dragon 2024-09-18 06:34:19 -05:00
parent 71ed32cb19
commit 29805a07f8
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -630,14 +630,13 @@ Rectangle {
RowLayout {
width: parent.width
Layout.alignment: Qt.AlignHCenter
visible: !votesTallied
// Recast vote
Rectangle {
width: 150
height: 40
color: "#c0bfbc"
visible: ((isHost && canHostVote) || !isHost) && !pollStats.winnerSelected
visible: ((isHost && canHostVote) || !isHost) && !pollStats.winnerSelected && !votesTallied
Text {
anchors.centerIn: parent