mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 09:02:25 +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 {
|
RowLayout {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
visible: !votesTallied
|
|
||||||
|
|
||||||
// Recast vote
|
// Recast vote
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: 150
|
width: 150
|
||||||
height: 40
|
height: 40
|
||||||
color: "#c0bfbc"
|
color: "#c0bfbc"
|
||||||
visible: ((isHost && canHostVote) || !isHost) && !pollStats.winnerSelected
|
visible: ((isHost && canHostVote) || !isHost) && !pollStats.winnerSelected && !votesTallied
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|
Loading…
Reference in a new issue