From f35758105ec558b7fc731ddc29907ecf505ff95c Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 6 Dec 2022 20:55:04 -0500 Subject: [PATCH] Backport PR #24645: Removed 'above' wording from Input hook integration docs (#24632) --- doc/users/explain/interactive_guide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/users/explain/interactive_guide.rst b/doc/users/explain/interactive_guide.rst index 377487df1545..d6082c1ed433 100644 --- a/doc/users/explain/interactive_guide.rst +++ b/doc/users/explain/interactive_guide.rst @@ -166,8 +166,8 @@ takes over again. This time-share technique only allows the event loop to run while python is otherwise idle and waiting for user input. If you want the GUI to be responsive during long running code it is necessary to -periodically flush the GUI event queue as described :ref:`above -`. In this case it is your code, not the REPL, which +periodically flush the GUI event queue as described in :ref:`spin_event_loop`. +In this case it is your code, not the REPL, which is blocking the process so you need to handle the "time-share" manually. Conversely, a very slow figure draw will block the prompt until it finishes drawing.