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:
authorJoshua Leung <aligorith@gmail.com>2007-05-18 15:50:04 +0400
committerJoshua Leung <aligorith@gmail.com>2007-05-18 15:50:04 +0400
commit42121b6a3de9892b53bae1636c2b7755d441fcdb (patch)
treea272d83d469370f34c207ecd4328bd23155d6c84 /source/blender/python/api2_2x/doc
parent34d7028931c8db8ce7441b74a94ea20969ead9ff (diff)
Fixed a few typos in the documentation for Draw module of Python API.
Diffstat (limited to 'source/blender/python/api2_2x/doc')
-rw-r--r--source/blender/python/api2_2x/doc/Draw.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/doc/Draw.py b/source/blender/python/api2_2x/doc/Draw.py
index 3b8a0d02eae..70006048a61 100644
--- a/source/blender/python/api2_2x/doc/Draw.py
+++ b/source/blender/python/api2_2x/doc/Draw.py
@@ -237,14 +237,14 @@ def EndAlign():
def UIBlock(draw):
"""
- This function creates a popup area where buttons, lebels, sliders etc can be dwarn.
+ This function creates a popup area where buttons, labels, sliders etc can be drawn.
@type draw: function
@param draw: A function to draw to the popup area, taking no arguments: draw().
@note: The size of the popup will expand to fit the bounds of the buttons created in the draw function.
@note: Be sure to use the mouse coordinates to position the buttons under the mouse,
- so the popup dosnt exit as soon as it opens.
+ so the popup dosn't exit as soon as it opens.
The coordinates for buttons start 0,0 at the bottom left hand side of the screen.
@note: Within this popup, Redraw events and the registered button callback will not work.
For buttons to run events, use per button callbacks.