[Bf-blender-cvs] [77187718e4f] master: Fix T78469: Output Metadata: Strip Name no longer accessible

Philipp Oeser noreply at git.blender.org
Mon Aug 2 17:27:14 CEST 2021


Commit: 77187718e4fb51ad8b1e486d0c09fcb0998afcd6
Author: Philipp Oeser
Date:   Fri Jul 30 08:34:24 2021 +0200
Branches: master
https://developer.blender.org/rB77187718e4fb51ad8b1e486d0c09fcb0998afcd6

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

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

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

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

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"



More information about the Bf-blender-cvs mailing list