From bd5daf17c227303458ca5d65ea4b6277e4845a0f Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Wed, 4 Sep 2024 15:50:30 -0500 Subject: [PATCH] Unselect active selection on join. --- applications/voting/vote.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/applications/voting/vote.qml b/applications/voting/vote.qml index 18bdfd4..1924c13 100644 --- a/applications/voting/vote.qml +++ b/applications/voting/vote.qml @@ -605,14 +605,15 @@ Rectangle { // Add poll info to the list of active polls case "new_poll": - active_polls.append(message.poll) + active_polls.append(message.poll); break; // Populate the client view of the current question and options case "poll_prompt": - current_page = "poll_client_view" + current_page = "poll_client_view"; + active_polls_list.index_selected = -1; // Unselect whatever poll was selected (If one was selected) // Clear options - poll_option_model.clear() + poll_option_model.clear(); // Set values prompt_question.text = message.prompt.question