Fix: Remove unused "Active Modifier Outline" setting

This setting was added in 866fcd0a09
by mistake and shouldn't have been kept.
Removing it again.

Pull Request: https://projects.blender.org/blender/blender/pulls/146092
This commit is contained in:
Falk David
2025-09-11 16:18:31 +02:00
committed by Falk David
parent 819175961b
commit 929110db04

View File

@@ -3825,12 +3825,6 @@ static void rna_def_userdef_theme_space_seq(BlenderRNA *brna)
RNA_def_property_array(prop, 4);
RNA_def_property_ui_text(prop, "Selected Text", "Text strip editing selection");
RNA_def_property_update(prop, 0, "rna_userdef_theme_update");
prop = RNA_def_property(srna, "active_modifier", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_float_sdna(prop, nullptr, "active");
RNA_def_property_array(prop, 4);
RNA_def_property_ui_text(prop, "Active Modifier Outline", "");
RNA_def_property_update(prop, 0, "rna_userdef_theme_update");
}
static void rna_def_userdef_theme_space_action(BlenderRNA *brna)