Skip to content

Commit 92dc137

Browse files
committed
fix: border style
1 parent 9d5a6b0 commit 92dc137

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

videodb/timeline_v2.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ class HorizontalAlignment(str, Enum):
6666
class CaptionBorderStyle(str, Enum):
6767
"""Border style properties for caption assets."""
6868

69-
no_border = "no_border"
70-
opaque_box = "opaque_box"
69+
outline_and_shadow = "outline_and_shadow"
7170
outline = "outline"
7271

7372

@@ -460,7 +459,7 @@ class BorderAndShadow:
460459

461460
def __init__(
462461
self,
463-
style: CaptionBorderStyle = CaptionBorderStyle.no_border,
462+
style: CaptionBorderStyle = CaptionBorderStyle.outline_and_shadow,
464463
outline: int = 1,
465464
outline_color: str = "&H00000000",
466465
shadow: int = 0,

0 commit comments

Comments
 (0)