sound-equalizer #105613

Merged
Richard Antalik merged 18 commits from :sound-equalizer into main 2023-08-30 22:36:44 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a3dd2129c7 - Show all commits

View File

@ -82,7 +82,7 @@ void SEQUENCER_OT_strip_modifier_add(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
/* properties */
prop = RNA_def_enum(ot->srna, "type", DummyRNA_NULL_items, 0, "Type", "");
prop = RNA_def_enum(ot->srna, "type", rna_enum_dummy_NULL_items, 0, "Type", "");
RNA_def_enum_funcs(prop, filter_modifiers_by_sequence_type);
ot->prop = prop;
}

View File

@ -22,7 +22,7 @@
#include "BLI_listbase.h"
#include "BLI_utildefines.h"
#include "BLO_read_write.h"
#include "BLO_read_write.hh"
#include "BKE_colortools.h"
#include "BKE_main.h"