From c3e08bd874c6fc62f25ec2f11cd80402dbbb4369 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:33:44 +0200 Subject: [PATCH] [Input] Fix incorrect setter usage in C# --- tutorials/inputs/handling_quit_requests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/inputs/handling_quit_requests.rst b/tutorials/inputs/handling_quit_requests.rst index 73aff7137..88158055b 100644 --- a/tutorials/inputs/handling_quit_requests.rst +++ b/tutorials/inputs/handling_quit_requests.rst @@ -60,7 +60,7 @@ procedure: .. code-tab:: csharp - GetTree().SetAutoAcceptQuit(false); + GetTree().AutoAcceptQuit = false; Sending your own quit notification ----------------------------------