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:
authorCampbell Barton <ideasman42@gmail.com>2010-04-17 23:05:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-17 23:05:53 +0400
commit4cf697de8913e91e9091a12afbd37f5ebd4c9940 (patch)
tree3ab3ea56d24c12abfcb9dd027b8a917f2bff639b /release/scripts/ui/properties_texture.py
parent392e1da1790d252f0f156379c1d5507959a4e17a (diff)
- for BGE mouse and keyboard events use tuples rather then lists
- pep8 corrections
Diffstat (limited to 'release/scripts/ui/properties_texture.py')
-rw-r--r--release/scripts/ui/properties_texture.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index e511f6ca654..1d35aafd8aa 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -250,7 +250,7 @@ class TEXTURE_PT_mapping(TextureSlotPanel):
if type(idblock) == bpy.types.Brush:
if context.sculpt_object:
layout.prop(tex, "map_mode", expand=True)
-
+
row = layout.row()
row.active = tex.map_mode in ('FIXED', 'TILED')
row.prop(tex, "angle")