- Added Blender.UpdateMenus() + doc: so scripts can automatically update Blender menus when they create (or download or whatever) new scripts to be registered.
- Removed a long deprecated function from the Blender module (release dict).

Matt (broken) mentioned the UpdateMenus function a couple weeks ago.  I also updated the Save Current Theme script to use it.  This is all related to his ideas to use scripts to save and restore themes and e.g. render presets.
This commit is contained in:
2005-01-13 19:19:05 +00:00
parent bb0da8a7aa
commit 3ba66e20b9
4 changed files with 46 additions and 28 deletions

View File

@@ -2,14 +2,14 @@
"""
Name: 'Save Current Theme'
Blender: 234
Blender: 236
Group: 'Export'
Tooltip: 'Save current theme as a bpython script'
"""
__author__ = "Willian P. Germano"
__url__ = ("blender", "elysiun")
__version__ = "1.0 11/05/04"
__version__ = "1.1 2005/13/01"
__bpydoc__ = """\
This script saves the current Theme in Blender as a Blender Python script.
@@ -114,3 +114,8 @@ theme = Theme.New('%s')
fout.close()
FileSelector(write_theme, "Save Current Theme", default_fname)
try:
Blender.UpdateMenus()
except:
Blender.Draw.PupMenu("Warning - check console!%t|Menus could not be automatically updated")