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-04-23 17:11:48 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-04-23 17:11:48 +0400
commitabe8191d7091b12604a1f427dc1e1bce15d7053e (patch)
tree3767e375f88fc32ac87d0628ac916525217a5921 /source/blender/python/api2_2x/doc/Draw.py
parentda7b4711a425aca00da78520d021acef57bae59f (diff)
BPython:
- fixed two warnings, unused var in Object.c and undeclared function in script.c - updated Blender.Draw doc, it was missing info about Button object - refactored pytype initialization to try to fix for once platform (and distro!) specific crashes on startup. This asked for tiny updates in Effect.[ch] (removed static from declaration, moved definitions to the .c file) and modules.h - fixed error I made trying to fix scripts w/ no [eol] char in menus. Thanks Michael Velikanje for reporting the problem!
Diffstat (limited to 'source/blender/python/api2_2x/doc/Draw.py')
-rw-r--r--source/blender/python/api2_2x/doc/Draw.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/doc/Draw.py b/source/blender/python/api2_2x/doc/Draw.py
index 4a0185cd389..3c391f93848 100644
--- a/source/blender/python/api2_2x/doc/Draw.py
+++ b/source/blender/python/api2_2x/doc/Draw.py
@@ -381,3 +381,12 @@ def Text(string, fontsize = 'normal'):
@rtype: int
@return: The width of I{string} drawn with the chosen I{fontsize}.
"""
+
+class Button:
+ """
+ The Button object
+ =================
+ This object represents a button in Blender's GUI.
+ @type val: int or float or string (depends on button type).
+ @cvar val: The button's value.
+ """