From ed3c9ab4edbbc72a7af3d0ae9fd3961f3e99b293 Mon Sep 17 00:00:00 2001 From: Qluxzz Date: Mon, 28 Oct 2024 12:43:40 +0100 Subject: [PATCH] Hide quit button, only needed for tests --- src/Main.elm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Main.elm b/src/Main.elm index 050c792..1a4e6f7 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -854,8 +854,10 @@ actionsView state player = Html.div [] [ Html.button [ Html.Events.onClick NextRound ] [ Html.text "Continue?" ] + + -- Hidden quit button used for tests , Html.button - [ Html.Events.onClick QuitToMainMenu ] + [ Html.Events.onClick QuitToMainMenu, Html.Attributes.style "display" "none" ] [ Html.text "Quit?" ] ] ]