From e9155696e362e7692fbf898f987e0f71cd9c849f Mon Sep 17 00:00:00 2001 From: Jakob Pinterits Date: Mon, 29 Jul 2024 22:38:37 +0200 Subject: [PATCH] MediaPlayer now defaults to a black background (technically breaking) --- rio/components/media_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rio/components/media_player.py b/rio/components/media_player.py index 2446ce72..e5a4e380 100644 --- a/rio/components/media_player.py +++ b/rio/components/media_player.py @@ -104,7 +104,7 @@ class MediaPlayer(KeyboardFocusableFundamentalComponent): controls: bool = True, muted: bool = False, volume: float = 1.0, - background: fills._FillLike = color.Color.TRANSPARENT, + background: fills._FillLike = color.Color.BLACK, on_playback_end: EventHandler[[]] = None, on_error: EventHandler[[]] = None, key: str | int | None = None,