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-10-02 10:34:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-02 10:34:04 +0400
commitdb1b74654bc7e268a310a75c64cdee5b53358001 (patch)
tree4e33b6c57abfe08f771b37bc7d65f307876e0a78 /release/scripts/ui/space_image.py
parent734b7b969db315f5ab548b5a8104fc35f29d0f51 (diff)
- spec hardness was missing redraw update
- missed rna rename in image ui - use BLI_math functions in gpu_draw.c (no functional changes)
Diffstat (limited to 'release/scripts/ui/space_image.py')
-rw-r--r--release/scripts/ui/space_image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py
index 7b3954a2e74..d2e5046c816 100644
--- a/release/scripts/ui/space_image.py
+++ b/release/scripts/ui/space_image.py
@@ -391,7 +391,7 @@ class IMAGE_PT_game_properties(bpy.types.Panel):
col.prop(ima, "use_tiles")
sub = col.column(align=True)
- sub.active = ima.tiles or ima.use_animation
+ sub.active = ima.use_tiles or ima.use_animation
sub.prop(ima, "tiles_x", text="X")
sub.prop(ima, "tiles_y", text="Y")