Skip to content

Commit

Permalink
Mark shuffle transition as windows only (pre-v29) (stream-labs#4898)
Browse files Browse the repository at this point in the history
  • Loading branch information
gettinToasty authored Mar 15, 2024
1 parent f04b3fb commit 7c5dde5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/services/transitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,14 @@ class TransitionsViews extends ViewHandler<ITransitionsState> {
{ title: $t('Swipe'), value: ETransitionType.Swipe },
{ title: $t('Slide'), value: ETransitionType.Slide },
{ title: $t('Fade to Color'), value: ETransitionType.FadeToColor },
{ title: $t('Shuffle'), value: ETransitionType.Shuffle },
{ title: $t('Luma Wipe'), value: ETransitionType.LumaWipe },
{ title: $t('Stinger'), value: ETransitionType.Stinger },
];

if (getOS() === OS.Windows) types.push({ title: $t('Motion'), value: ETransitionType.Motion });
if (getOS() === OS.Windows) {
types.push({ title: $t('Motion'), value: ETransitionType.Motion });
types.push({ title: $t('Shuffle'), value: ETransitionType.Shuffle });
}

return types;
}
Expand Down

0 comments on commit 7c5dde5

Please sign in to comment.