From 29805a07f878e9656e9a3de03e649a47ef33d291 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Wed, 18 Sep 2024 06:34:19 -0500 Subject: [PATCH] Fixed client being unable to leave when votes are tallied. --- applications/voting/vote.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/applications/voting/vote.qml b/applications/voting/vote.qml index 15c4524..386409a 100644 --- a/applications/voting/vote.qml +++ b/applications/voting/vote.qml @@ -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