Fix T75421: Wipe clock and Iris transition not working.

Use enum items in RNA enum definition instead of hard-coded values.

Broken by 5dcb6fb22f Cleanup: unused enums

Reviewed By: brecht

Differential Revision: https://developer.blender.org/D7342
This commit is contained in:
Richard Antalik 2020-04-12 22:57:34 +02:00
parent bbf1c83370
commit 0c9e47705d
Notes: blender-bot 2023-02-14 08:40:26 +01:00
Referenced by issue #75421, VSE Wipe clock and Iris transition not working
1 changed files with 6 additions and 6 deletions

View File

@ -2517,12 +2517,12 @@ static void rna_def_wipe(StructRNA *srna)
PropertyRNA *prop;
static const EnumPropertyItem wipe_type_items[] = {
{0, "SINGLE", 0, "Single", ""},
{1, "DOUBLE", 0, "Double", ""},
/* not used yet {2, "BOX", 0, "Box", ""}, */
/* not used yet {3, "CROSS", 0, "Cross", ""}, */
{4, "IRIS", 0, "Iris", ""},
{5, "CLOCK", 0, "Clock", ""},
{DO_SINGLE_WIPE, "SINGLE", 0, "Single", ""},
{DO_DOUBLE_WIPE, "DOUBLE", 0, "Double", ""},
/* not used yet {DO_BOX_WIPE, "BOX", 0, "Box", ""}, */
/* not used yet {DO_CROSS_WIPE, "CROSS", 0, "Cross", ""}, */
{DO_IRIS_WIPE, "IRIS", 0, "Iris", ""},
{DO_CLOCK_WIPE, "CLOCK", 0, "Clock", ""},
{0, NULL, 0, NULL, NULL},
};