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:
authorPhilipp Oeser <info@graphics-engineer.com>2021-07-30 09:34:24 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-08-02 18:26:50 +0300
commit77187718e4fb51ad8b1e486d0c09fcb0998afcd6 (patch)
treeb45d0b8d81cb76e63e1c353bbb814343efdb57c3 /release
parenteccd8af828ea9dea434905e0ed1c5348f77fbfd5 (diff)
Fix T78469: Output Metadata: Strip Name no longer accessible
Caused by rB7fc60bff14a6. This has actually been reported and closed, but that was clearly a misunderstanding (above commit changed a checkbox to be an enum, but a second checkbox was simply removed) Maniphest Tasks: T78469 Differential Revision: https://developer.blender.org/D12084
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_output.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_output.py b/release/scripts/startup/bl_ui/properties_output.py
index 75c1f69f84f..0c1a26ceec1 100644
--- a/release/scripts/startup/bl_ui/properties_output.py
+++ b/release/scripts/startup/bl_ui/properties_output.py
@@ -205,6 +205,9 @@ class RENDER_PT_stamp(RenderOutputButtonsPanel, Panel):
col.prop(rd, "use_stamp_marker", text="Marker")
col.prop(rd, "use_stamp_filename", text="Filename")
+ if rd.use_sequencer:
+ col.prop(rd, "use_stamp_sequencer_strip", text="Strip Name")
+
class RENDER_PT_stamp_note(RenderOutputButtonsPanel, Panel):
bl_label = "Note"