mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 10:46:56 +02:00
Fixed client being unable to leave when votes are tallied.
This commit is contained in:
parent
71ed32cb19
commit
29805a07f8
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue