Skip to content

Commit

Permalink
fix: do not allow negative duration of a formation
Browse files Browse the repository at this point in the history
  • Loading branch information
vasarhelyi committed Nov 4, 2024
1 parent 3b8da96 commit 48571fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/sbstudio/plugin/model/storyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ class StoryboardEntry(PropertyGroup):
duration = IntProperty(
name="Duration",
description="Duration of this formation",
min=0,
default=0,
options=set(),
)
Expand Down

0 comments on commit 48571fa

Please sign in to comment.