[Bf-blender-cvs] [7a81ccc] blender-v2.76-release: Fix T46239: Cross effect strip input fields can't be changed (in its properties panel).

Bastien Montagne noreply at git.blender.org
Wed Sep 30 17:10:30 CEST 2015


Commit: 7a81cccd1d405c613584ce3f83392e5eb55255cb
Author: Bastien Montagne
Date:   Fri Sep 25 10:54:38 2015 +0200
Branches: blender-v2.76-release
https://developer.blender.org/rB7a81cccd1d405c613584ce3f83392e5eb55255cb

Fix T46239: Cross effect strip input fields can't be changed (in its properties panel).

Those shall not be editable in UI...

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 5991ed5..15cac53 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -551,6 +551,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
 
         if strip.input_count > 0:
             col = layout.column()
+            col.enabled = False
             col.prop(strip, "input_1")
             if strip.input_count > 1:
                 col.prop(strip, "input_2")




More information about the Bf-blender-cvs mailing list