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:
authorJulian Eisel <eiseljulian@gmail.com>2016-03-03 14:52:53 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-03-04 19:11:59 +0300
commit67d310459d204638278275343e9b9136d28b3e1c (patch)
tree40b2334d1c9bd8dac89c1c0281cb321169661e97
parentb805b3735ca9380b39804bd913c018b29a45679a (diff)
Fix T47674: "Change Data/Files" setting incorrect filter
Image filter was not set, but only if invoked from toolbar (image strip needs to be selected to see the button). Caused by rB7fa72b8970, Wasn't aware there's another button for this for image strips.
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index a06e08c28c0..0819d2b34b6 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -711,7 +711,7 @@ class SEQUENCER_PT_input(SequencerButtonsPanel, Panel):
layout.prop(strip.colorspace_settings, "name")
layout.prop(strip, "alpha_mode")
- layout.operator("sequencer.change_path")
+ layout.operator("sequencer.change_path").filter_image = True
elif seq_type == 'MOVIE':
split = layout.split(percentage=0.2)