Skip to content

Commit

Permalink
Duration default value when not set for title
Browse files Browse the repository at this point in the history
  • Loading branch information
gabber235 committed Dec 29, 2024
1 parent d6fd90a commit 6bf0233
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ class ShowTitleActionEntry(

data class TitleDurations(
@Help("The duration of the fade in effect.")
val fadeIn: Duration = Duration.ZERO,
val fadeIn: Duration = Duration.ofSeconds(1),
@Help("The duration that it stays.")
val stay: Duration = Duration.ZERO,
val stay: Duration = Duration.ofSeconds(1),
@Help("The duration of the fade out effect.")
val fadeOut: Duration = Duration.ZERO,
val fadeOut: Duration = Duration.ofSeconds(1),
)

0 comments on commit 6bf0233

Please sign in to comment.