From b6f87336efb485a576f373e48c2e3cdb4d06e0e2 Mon Sep 17 00:00:00 2001 From: Zach Coleman Date: Thu, 15 Aug 2024 12:19:10 -0700 Subject: [PATCH] Update handling_quit_requests.rst --- tutorials/inputs/handling_quit_requests.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorials/inputs/handling_quit_requests.rst b/tutorials/inputs/handling_quit_requests.rst index fae7f3cde..e470e5f3f 100644 --- a/tutorials/inputs/handling_quit_requests.rst +++ b/tutorials/inputs/handling_quit_requests.rst @@ -60,8 +60,10 @@ at any time by either the user or the OS. A way to plan ahead for this possibility is to utilize ``NOTIFICATION_APPLICATION_PAUSED`` in order to perform any needed actions as the app is being suspended. +.. note:: On iOS, you only have approximately 5 seconds to finish a task started by this signal. If you go over this allotment, iOS will kill the app instead of pausing it. + On Android, pressing the Back button will exit the application if -**Application > Config > Quit** On Go Back is checked in the Project Settings +**Application > Config > Quit On Go Back** is checked in the Project Settings (which is the default). This will fire ``NOTIFICATION_WM_GO_BACK_REQUEST``.