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@gmail.com>2018-06-19 19:54:34 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-19 20:14:42 +0300
commit85f717fcdacd80553fb5cccac3ab6f5032f01fc2 (patch)
tree35532af02efcf0879eac99aac537f7f52db4046a /release/scripts/startup/bl_ui/properties_scene.py
parent44611ab8603cf06f51617945c0180ccfaa8371bd (diff)
UI: tweak sequencer color space position, it's not related to display device.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_scene.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_scene.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_scene.py b/release/scripts/startup/bl_ui/properties_scene.py
index 9c5cf3a4d6d..2ee1c156935 100644
--- a/release/scripts/startup/bl_ui/properties_scene.py
+++ b/release/scripts/startup/bl_ui/properties_scene.py
@@ -262,7 +262,6 @@ class SCENE_PT_color_management(SceneButtonsPanel, Panel):
col = layout.column()
col.prop(scene.display_settings, "display_device")
- col.prop(scene.sequencer_colorspace_settings, "name", text="Sequencer Color Space")
col.separator()
@@ -272,6 +271,10 @@ class SCENE_PT_color_management(SceneButtonsPanel, Panel):
col.prop(view, "gamma")
col.prop(view, "look")
+ col.separator()
+
+ col.prop(scene.sequencer_colorspace_settings, "name", text="Sequencer Color Space")
+
class SCENE_PT_color_management_curves(SceneButtonsPanel, Panel):
bl_label = "Use Curves"