From b6ab61a28f1da70d0a1f63546ea066e0df517e55 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Tue, 10 Sep 2024 15:28:45 -0500 Subject: [PATCH] Clear host window when creating poll. --- applications/voting/vote.js | 2 +- applications/voting/vote.qml | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/applications/voting/vote.js b/applications/voting/vote.js index 651bc9e..131526a 100644 --- a/applications/voting/vote.js +++ b/applications/voting/vote.js @@ -14,12 +14,12 @@ // TODO: Documentation // TODO: Allow host voting // TODO: Sound for new vote -// TODO: Clear poll host view on creating new poll // TODO: Debug mode? // FIXME: Handle ties // FIXME: Running election without votes causes max stack error // TODO: Voting results page +// TODO: Joining poll sometimes causes to double stack on other clients poll_list? (() => { "use strict"; diff --git a/applications/voting/vote.qml b/applications/voting/vote.qml index 3c8f1da..bb77114 100644 --- a/applications/voting/vote.qml +++ b/applications/voting/vote.qml @@ -159,7 +159,6 @@ Rectangle { anchors.fill: parent onClicked: { toScript({type: "create_poll", poll: {title: poll_to_create_title.text, description: poll_to_create_description.text}}); - current_page = "poll_host_view"; } } } @@ -681,6 +680,12 @@ Rectangle { switch (message.type){ // Switch view to the create poll view case "create_poll": + // Reset poll host page + poll_to_respond_title.text = "Prompt" + poll_option_model_host.clear(); + + // Show host page + current_page = "poll_host_view"; break; // Add poll info to the list of active polls