diff --git a/doc/users/explain/interactive_guide.rst b/doc/users/explain/interactive_guide.rst index 82631e423909..9c110967d94a 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.