Fix HUD toggle ("Adjust Last Operation") missing in VSE
The `SpaceSequenceEditor.show_region_hud` property was not generated, but accessed in Python.
This commit is contained in:
@@ -4526,8 +4526,9 @@ static void rna_def_space_sequencer(BlenderRNA *brna)
|
||||
RNA_def_struct_sdna(srna, "SpaceSeq");
|
||||
RNA_def_struct_ui_text(srna, "Space Sequence Editor", "Sequence editor space data");
|
||||
|
||||
rna_def_space_generic_show_region_toggles(
|
||||
srna, (1 << RGN_TYPE_TOOL_HEADER) | (1 << RGN_TYPE_UI) | (1 << RGN_TYPE_TOOLS));
|
||||
rna_def_space_generic_show_region_toggles(srna,
|
||||
(1 << RGN_TYPE_TOOL_HEADER) | (1 << RGN_TYPE_UI) |
|
||||
(1 << RGN_TYPE_TOOLS) | (1 << RGN_TYPE_HUD));
|
||||
|
||||
/* view type, fairly important */
|
||||
prop = RNA_def_property(srna, "view_type", PROP_ENUM, PROP_NONE);
|
||||
|
||||
Reference in New Issue
Block a user