Skip to content
Snippets Groups Projects
Commit a54a36ba authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Little warning about CallAfter in status module.

parent ca9f8ef8
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,12 @@ following functions: ...@@ -19,7 +19,12 @@ following functions:
The :func:`update` function may be used to display a message. By default, the The :func:`update` function may be used to display a message. By default, the
message is simply logged (via the ``logging`` module). However, if a status message is simply logged (via the ``logging`` module). However, if a status
target has been set via the :func:`setTarget` function, the message is also target has been set via the :func:`setTarget` function, the message is also
passed to this target. passed to this target.
.. warning:: If the status update target is a ``wx`` GUI object, you must
make sure that it is updated asynchronously (e.g. via
``wx.CallAfter``).
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment