From f52f26d4814c7c4e06b5299a643801c5eb4870a3 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 11 Sep 2025 17:20:03 +0200 Subject: [PATCH] UI: VSE: Use correct icon for enable modifier "Enable modifier" was using the eye icon, which usually indicates only visibility, but this actually affects render. Also in the future there could be other visibility toggles, like regular modifiers. Reviewed with Falk and Dalai in person. --- source/blender/makesrna/intern/rna_sequencer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_sequencer.cc b/source/blender/makesrna/intern/rna_sequencer.cc index 142aa511e81..fd77547f1a5 100644 --- a/source/blender/makesrna/intern/rna_sequencer.cc +++ b/source/blender/makesrna/intern/rna_sequencer.cc @@ -3835,7 +3835,7 @@ static void rna_def_modifier(BlenderRNA *brna) prop = RNA_def_property(srna, "enable", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, nullptr, "flag", STRIP_MODIFIER_FLAG_MUTE); RNA_def_property_ui_text(prop, "Enable", "Enable this modifier"); - RNA_def_property_ui_icon(prop, ICON_HIDE_ON, 1); + RNA_def_property_ui_icon(prop, ICON_RESTRICT_RENDER_ON, 1); RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_StripModifier_update"); prop = RNA_def_property(srna, "show_expanded", PROP_BOOLEAN, PROP_NONE);