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
committerJulian Eisel <eiseljulian@gmail.com>2016-03-03 16:32:57 +0300
commitadafcda0bd484195ccb0d10be38fb78ca127e0f3 (patch)
treea5ea6427bf137bd6d8b84f8308845fe9ac6b5592 /release
parent29902e0242a823276604e3c10c6649e387d70b32 (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.
Diffstat (limited to 'release')
-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)