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>2004-07-30 09:18:14 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-07-30 09:18:14 +0400
commit7ce069850ff729679a76dac72b5def67d870f013 (patch)
treeac21ff183a0ab7faffa70867bf62fdfbdcb8e2b9 /source/blender/python/BPY_interface.c
parent4f278a78d43a584c2f0a6d009b40932fe9bbcbc1 (diff)
First of all thanks Kent Mein for committing the fix to space.c and Peter den Bak for reporting and testing it.
- making Blender not warn about 2.34 scripts, as Ton requested. Will turn this on again before release; - small fix to the new helpwebsites and helpsystem additions in BPy_menus.c, should solve problem reported by Jean-Luc Peurière about empty menus on startup; - updated version info of a few scripts to 2.34, since they use recently added bpython api functions.
Diffstat (limited to 'source/blender/python/BPY_interface.c')
-rw-r--r--source/blender/python/BPY_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/BPY_interface.c b/source/blender/python/BPY_interface.c
index 8411ee00cb9..f3ef709e123 100644
--- a/source/blender/python/BPY_interface.c
+++ b/source/blender/python/BPY_interface.c
@@ -564,11 +564,11 @@ int BPY_menu_do_python(short menutype, int event)
pym = BPyMenu_GetEntry(menutype, (short)event);
if (!pym) return 0;
-
+/* uncomment before release 2.34
if (pym->version > G.version)
notice ("Version mismatch: script was written for Blender %d. "
"It may fail with yours: %d.", pym->version, G.version);
-
+*/
/* if there are submenus, let the user choose one from a pupmenu that we
* create here.*/
pysm = pym->submenus;