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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-09-27 16:44:52 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-09-27 16:44:52 +0400
commite116d3a7be30c23707279a40089fb7483fe438e1 (patch)
tree27f54a908b6238bb26c742045c33b64c0980f38e /release/scripts/startup/bl_ui/properties_scene.py
parentd4e40b52309b69b2a4379db6df5a6ace9fad65e8 (diff)
Color Management: move "Color Unpremultiply" option to Color Management panel
from the Shading panel, since it's about color space conversion for renders.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_scene.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_scene.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_scene.py b/release/scripts/startup/bl_ui/properties_scene.py
index 2ccdb9cee26..518b253d0b0 100644
--- a/release/scripts/startup/bl_ui/properties_scene.py
+++ b/release/scripts/startup/bl_ui/properties_scene.py
@@ -241,6 +241,7 @@ class SCENE_PT_color_management(Panel):
layout = self.layout
scene = context.scene
+ rd = scene.render
col = layout.column()
col.label(text="Display:")
@@ -250,6 +251,7 @@ class SCENE_PT_color_management(Panel):
col.separator()
col.label(text="Render:")
col.template_colormanaged_view_settings(scene, "view_settings")
+ col.prop(rd, "use_color_unpremultiply")
col = layout.column()
col.separator()