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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-09-25 11:54:38 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-09-25 11:54:38 +0300
commita4a6e9b3f556e92f30e0e80f060427060b234859 (patch)
tree51b81ca1a3ac7eb8b5f2e29ff80d12608ae291e0 /release
parent7967da2515e6ffd49d925dffa430e2d50e978bac (diff)
Fix T46239: Cross effect strip input fields can't be changed (in its properties panel).
Those shall not be editable in UI...
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 5bf095dc6b5..58df86402a6 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")