Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-04-22 15:54:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-22 15:54:53 +0400
commit5c891386842037910f5d522c7d3ffb1792b804db (patch)
tree133e551d3bf684ea1ccaa8a7d56a4f57b879a95a /source/blender/python
parent69d0a68f0d7ed82b9701c5a7832f609e4ea4fd75 (diff)
style cleanup: comments
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index 074f03654bc..d638a3edf30 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -99,8 +99,8 @@ static double bpy_timer_run_tot; /* accumulate python runs */
void bpy_context_update(bContext *C)
{
/* don't do this from a non-main (e.g. render) thread, it can cause a race
- condition on C->data.recursion. ideal solution would be to disable
- context entirely from non-main threads, but that's more complicated */
+ * condition on C->data.recursion. ideal solution would be to disable
+ * context entirely from non-main threads, but that's more complicated */
if (!BLI_thread_is_main())
return;