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:
authorMatt Ebb <matt@mke3.net>2010-03-26 04:31:43 +0300
committerMatt Ebb <matt@mke3.net>2010-03-26 04:31:43 +0300
commitfda6082c682dcd8275f752e9a968ba4aa6e05441 (patch)
tree45f8c4c17efbbbfdd0e64817f98043056a86d4dd /release/scripts/ui/space_image.py
parentfedabce47c193926eb0c845a305a62bc73d8d6ce (diff)
Fix for ben dansie, incorrect gamma with render baking.
Linear/gamma issues weren't really considered in baking yet.
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 4b4ff15014d..b8c5c010407 100644
--- a/release/scripts/ui/space_image.py
+++ b/release/scripts/ui/space_image.py
@@ -342,7 +342,7 @@ class IMAGE_PT_image_properties(bpy.types.Panel):
# ima = sima.image
iuser = sima.image_user
- layout.template_image(sima, "image", iuser, compact=True)
+ layout.template_image(sima, "image", iuser)
class IMAGE_PT_game_properties(bpy.types.Panel):