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:
authorWillian Padovani Germano <wpgermano@gmail.com>2009-01-25 20:49:39 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2009-01-25 20:49:39 +0300
commit99e549480beae558e07f37f58265e96a7a5e87f0 (patch)
tree26abf83a2701d317c59fff87a69bd9468f77fed3 /source/blender
parentf1948b363d6cd01ec6cfcd2d69101fdb9407aff6 (diff)
== Python: Space Handler Scriptlinks ==
Bugfix (patch #18216) I made a mistake on my previous try to fix this. I fixed something, tested, decided I should move the call to run spacehandlers to a better place, but missed removing the old call (ugh). Thanks Steven Truppe (rocketmagnet) for emailing me about it and for the patch.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/space.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index bba58840566..a132a58cfbf 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -1326,13 +1326,6 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
}
}
-#ifndef DISABLE_PYTHON
- /* run any view3d event handler script links */
- if (event && sa->scriptlink.totscript)
- if (BPY_do_spacehandlers(sa, event, val, SPACEHANDLER_VIEW3D_EVENT))
- return; /* return if event was processed (swallowed) by handler(s) */
-#endif
-
/* TEXTEDITING?? */
if((G.obedit) && G.obedit->type==OB_FONT) {
switch(event) {